diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-08-04 21:56:12 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-08-04 21:56:12 (GMT) |
commit | 7ea8143fe518b07f14f492295918567ecb11ab83 (patch) | |
tree | e7ddb8146a8027403f67046186d54c65b7b85921 /Tools | |
parent | bae7734eef9cbbdcadced065873ad3da6101923a (diff) | |
download | cpython-7ea8143fe518b07f14f492295918567ecb11ab83.zip cpython-7ea8143fe518b07f14f492295918567ecb11ab83.tar.gz cpython-7ea8143fe518b07f14f492295918567ecb11ab83.tar.bz2 |
Specify pathnames in a way that works on both OS9 and OSX.
You'll still have to manually edit it, though...
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 341f77d..fbe80e1 100644 --- a/Tools/bgen/bgen/bgenlocations.py +++ b/Tools/bgen/bgen/bgenlocations.py @@ -3,11 +3,11 @@ # import sys, os # Where to find the Universal Header include files: -MWERKSDIR="Moes:Applications (Mac OS 9):Metrowerks CodeWarrior 7.0:Metrowerks CodeWarrior:" -INCLUDEDIR=MWERKSDIR + "MacOS Support:Universal:Interfaces:CIncludes:" +MWERKSDIR="/Applications/Metrowerks CodeWarrior 7.0/Metrowerks CodeWarrior/" +INCLUDEDIR=os.path.join(MWERKSDIR, "MacOS Support", "Universal", "Interfaces", "CIncludes") # Where to put the python definitions file: -TOOLBOXDIR=os.path.join(sys.prefix, ":Mac:Lib:Carbon:") +TOOLBOXDIR=os.path.join(sys.prefix, "Mac", "Lib", "Carbon") # Creator for C files: CREATOR="CWIE" |