Changeset 529


Ignore:
Timestamp:
Feb 10, 2015, 12:04:20 PM (10 years ago)
Author:
Yuri Dario
Message:

python: use unixroot path for script path replacement. Fixes ticket#114.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified python/trunk/Lib/distutils/command/build_scripts.py

    r391 r529  
    9696                    outf = open(outfile, "w")
    9797                    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
    98102                        outf.write("#!%s%s\n" %
    99                                    (self.executable,
     103                                   (executable,
    100104                                    post_interp))
    101105                    else:
Note: See TracChangeset for help on using the changeset viewer.