diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-06-24 14:33:58 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-06-24 18:46:57 +1000 |
commit | 4cb423f52737d980132709fe63bc3194b9307880 (patch) | |
tree | 1b33af2c2f0ec64d13dad73b92dd77cdb5e68e2c /source4/auth | |
parent | 41cdcd54b7b7e3fb70fdb220e74a1daf30e1891a (diff) | |
download | samba-4cb423f52737d980132709fe63bc3194b9307880.tar.gz samba-4cb423f52737d980132709fe63bc3194b9307880.tar.bz2 samba-4cb423f52737d980132709fe63bc3194b9307880.zip |
s4-python: python is not always in /usr/bin
Using "#!/usr/bin/env python" is more portable. It still isn't ideal
though, as we should really use the python path found at configure
time. We do that in many places already, but some don't.
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/auth')
-rw-r--r-- | source4/auth/credentials/tests/bindings.py | 2 | ||||
-rw-r--r-- | source4/auth/gensec/tests/bindings.py | 2 | ||||
-rw-r--r-- | source4/auth/tests/bindings.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/source4/auth/credentials/tests/bindings.py b/source4/auth/credentials/tests/bindings.py index 4cb059ddf0..5ed61c6b21 100644 --- a/source4/auth/credentials/tests/bindings.py +++ b/source4/auth/credentials/tests/bindings.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Unix SMB/CIFS implementation. # Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007 diff --git a/source4/auth/gensec/tests/bindings.py b/source4/auth/gensec/tests/bindings.py index cffcc27aec..21e3fa379a 100644 --- a/source4/auth/gensec/tests/bindings.py +++ b/source4/auth/gensec/tests/bindings.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Unix SMB/CIFS implementation. # Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2009 diff --git a/source4/auth/tests/bindings.py b/source4/auth/tests/bindings.py index 58b66d3c98..cadfdd0ef7 100644 --- a/source4/auth/tests/bindings.py +++ b/source4/auth/tests/bindings.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Unix SMB/CIFS implementation. # Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007 |