From 4cb423f52737d980132709fe63bc3194b9307880 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 24 Jun 2010 14:33:58 +1000 Subject: 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 --- lib/subunit/python/subunit/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/subunit') diff --git a/lib/subunit/python/subunit/run.py b/lib/subunit/python/subunit/run.py index 01c0b0e9e6..e57939fdfa 100755 --- a/lib/subunit/python/subunit/run.py +++ b/lib/subunit/python/subunit/run.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # # Simple subunit testrunner for python # Copyright (C) Jelmer Vernooij 2007 -- cgit