diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-01-01 22:39:07 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-01-01 22:39:07 (GMT) |
commit | f1472384dcf23f771e171dbf99b65bded0bf0631 (patch) | |
tree | 47d9618779d7225e0027a1f66ede2224c3f4d5f9 /Tools | |
parent | e790eae7cff86c91c95917af9f82a69df13f544a (diff) | |
download | cpython-f1472384dcf23f771e171dbf99b65bded0bf0631.zip cpython-f1472384dcf23f771e171dbf99b65bded0bf0631.tar.gz cpython-f1472384dcf23f771e171dbf99b65bded0bf0631.tar.bz2 |
Updated to current pathnames.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/bgen/bgen/bgenlocations.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/bgen/bgen/bgenlocations.py b/Tools/bgen/bgen/bgenlocations.py index 4a2bd3b..341f77d 100644 --- a/Tools/bgen/bgen/bgenlocations.py +++ b/Tools/bgen/bgen/bgenlocations.py @@ -1,13 +1,13 @@ # # Local customizations # - +import sys, os # Where to find the Universal Header include files: -MWERKSDIR="Macintosh HD:SWDev:Codewarrior Pro 5:Metrowerks CodeWarrior:" +MWERKSDIR="Moes:Applications (Mac OS 9):Metrowerks CodeWarrior 7.0:Metrowerks CodeWarrior:" INCLUDEDIR=MWERKSDIR + "MacOS Support:Universal:Interfaces:CIncludes:" # Where to put the python definitions file: -TOOLBOXDIR="Macintosh HD:SWDev:Jack:Python:Mac:Lib:lib-toolbox:" +TOOLBOXDIR=os.path.join(sys.prefix, ":Mac:Lib:Carbon:") # Creator for C files: CREATOR="CWIE" |