]> granicus.if.org Git - python/commitdiff
Changed so that it replaces /usr/local/bin/python with /usr/bin/env python.
authorGuido van Rossum <guido@python.org>
Wed, 27 Nov 1996 19:43:49 +0000 (19:43 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 27 Nov 1996 19:43:49 +0000 (19:43 +0000)
Tools/scripts/fixps.py

index 3238c493772b828c4c3b93e3f3f2ec91fb29e300..7b10c9b808ab92fa571024cd97b57bedb588f02c 100755 (executable)
@@ -1,6 +1,6 @@
-#! /usr/local/bin/python
+#! /usr/bin/env python
 
-# Fix Python script(s) to reference the interpreter in /usr/local/bin.
+# Fix Python script(s) to reference the interpreter via /usr/bin/env python.
 
 import sys
 import regex
@@ -15,13 +15,13 @@ def main():
                        print file, ': can\'t open for update'
                        continue
                line = f.readline()
-               if regex.match('^#! */usr/local/python', line) < 0:
-                       print file, ': not a /usr/local/python script'
+               if regex.match('^#! */usr/local/bin/python', line) < 0:
+                       print file, ': not a /usr/local/bin/python script'
                        f.close()
                        continue
                rest = f.read()
-               line = regsub.sub('/usr/local/python', \
-                       '/usr/local/bin/python', line)
+               line = regsub.sub('/usr/local/bin/python',
+                                 '/usr/bin/env python', line)
                print file, ':', `line`
                f.seek(0)
                f.write(line)