summaryrefslogtreecommitdiffstats
path: root/Tools/scripts
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-11-27 19:43:49 (GMT)
committerGuido van Rossum <guido@python.org>1996-11-27 19:43:49 (GMT)
commit499181a833cb04e54eec1798f402b742935e7bb9 (patch)
tree6e190620d67d62c9e81b1a346a1d0e0cbca210ef /Tools/scripts
parentd5c58c34dbe460b4cbaa2c79f9ff79b7c126ddec (diff)
downloadcpython-499181a833cb04e54eec1798f402b742935e7bb9.zip
cpython-499181a833cb04e54eec1798f402b742935e7bb9.tar.gz
cpython-499181a833cb04e54eec1798f402b742935e7bb9.tar.bz2
Changed so that it replaces /usr/local/bin/python with /usr/bin/env python.
Diffstat (limited to 'Tools/scripts')
-rwxr-xr-xTools/scripts/fixps.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/Tools/scripts/fixps.py b/Tools/scripts/fixps.py
index 3238c49..7b10c9b 100755
--- a/Tools/scripts/fixps.py
+++ b/Tools/scripts/fixps.py
@@ -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)