Changeset 529
- Timestamp:
- Feb 10, 2015, 12:04:20 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified python/trunk/Lib/distutils/command/build_scripts.py ¶
r391 r529 96 96 outf = open(outfile, "w") 97 97 if not _sysconfig.is_python_build(): 98 if os.name == "os2": 99 executable = self.executable.replace(os.environ.get("UNIXROOT"),"/@unixroot").lower() 100 else: 101 executable = sys.executable 98 102 outf.write("#!%s%s\n" % 99 ( self.executable,103 (executable, 100 104 post_interp)) 101 105 else:
Note:
See TracChangeset
for help on using the changeset viewer.