1
0
mirror of https://gitlab.com/libvirt/libvirt-python.git synced 2025-07-07 16:59:38 +03:00

Don't hardcode interpreter path

This is particularly useful on operating systems that don't ship
Python as part of the base system (eg. FreeBSD) while still working
just as well as it did before on Linux.

Reviewed-by: Daniel P. Berrange <berrange@redhat.com>
This commit is contained in:
Cédric Bosdonnat
2017-11-29 18:04:13 +01:00
parent 8018f0aa7e
commit bedc937cce
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/python -u
#!/usr/bin/env python
#
#
#

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
#!/usr/bin/env python
import sys
import lxml

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
from distutils.core import setup, Extension, Command
from distutils.command.build import build