1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-06-13 23:21:33 +03:00

Use portable python shebangs

* In conda or Gentoo Prefix, we don't want to use the system python and
  instead rely on PATH lookup.
This commit is contained in:
David Seifert
2022-04-05 11:45:23 +02:00
parent 383d6ea03b
commit 02c6ce836c
7 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/python -u
#!/usr/bin/env python
#
# generate python wrappers from the XML API description
#

View File

@ -1,4 +1,4 @@
#!/usr/bin/python -u
#!/usr/bin/env python
import sys
import libxml2
# Memory debug specific

View File

@ -1,4 +1,4 @@
#!/usr/bin/python -u
#!/usr/bin/env python
import sys
import libxml2
# Memory debug specific

View File

@ -1,4 +1,4 @@
#!/usr/bin/python -u
#!/usr/bin/env python
import sys
import string
import libxml2

View File

@ -1,4 +1,4 @@
#!/usr/bin/python -u
#!/usr/bin/env python
import sys
import string
import libxml2

View File

@ -1,4 +1,4 @@
#!/usr/bin/python -u
#!/usr/bin/env python
#
# The exercise of rewriting xsltproc on top of the python
# bindings, not complete yet and shows up the things missing