diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-04-09 13:25:43 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-04-09 13:25:43 (GMT) |
commit | 0ae3220736f9b71820b01aee1f540d0afcceb9a6 (patch) | |
tree | 6015b689b7555940e0c0822b1896fff3ee39cb23 /Lib/plat-mac/bgenlocations.py | |
parent | 058a84f36ae62dc69f4cb2a07d038e10a617fffc (diff) | |
download | cpython-0ae3220736f9b71820b01aee1f540d0afcceb9a6.zip cpython-0ae3220736f9b71820b01aee1f540d0afcceb9a6.tar.gz cpython-0ae3220736f9b71820b01aee1f540d0afcceb9a6.tar.bz2 |
Detabbed.
Diffstat (limited to 'Lib/plat-mac/bgenlocations.py')
-rw-r--r-- | Lib/plat-mac/bgenlocations.py | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/Lib/plat-mac/bgenlocations.py b/Lib/plat-mac/bgenlocations.py index 896861e..418037d 100644 --- a/Lib/plat-mac/bgenlocations.py +++ b/Lib/plat-mac/bgenlocations.py @@ -12,12 +12,12 @@ Error = "bgenlocations.Error" # Where bgen is. For unix-Python bgen isn't installed, so you have to refer to # the source tree here. if sys.platform == 'mac': - # For MacPython we know where it is - def _pardir(p): return os.path.split(p)[0] - BGENDIR=os.path.join(sys.prefix, "Tools", "bgen", "bgen") + # For MacPython we know where it is + def _pardir(p): return os.path.split(p)[0] + BGENDIR=os.path.join(sys.prefix, "Tools", "bgen", "bgen") else: - # for unix-Python we don't know, please set it yourself. - BGENDIR="/Users/jack/src/python/Tools/bgen/bgen" + # for unix-Python we don't know, please set it yourself. + BGENDIR="/Users/jack/src/python/Tools/bgen/bgen" # # Where to find the Universal Header include files. If you have CodeWarrior @@ -26,9 +26,9 @@ else: # end of lines, so don't worry about that. # if sys.platform == 'mac': - _MWERKSDIR="Sap:Applications (Mac OS 9):Metrowerks CodeWarrior 7.0:Metrowerks CodeWarrior" + _MWERKSDIR="Sap:Applications (Mac OS 9):Metrowerks CodeWarrior 7.0:Metrowerks CodeWarrior" else: - _MWERKSDIR="/Volumes/Sap/Applications (Mac OS 9)/Metrowerks CodeWarrior 7.0/Metrowerks CodeWarrior/" + _MWERKSDIR="/Volumes/Sap/Applications (Mac OS 9)/Metrowerks CodeWarrior 7.0/Metrowerks CodeWarrior/" INCLUDEDIR=os.path.join(_MWERKSDIR, "MacOS Support", "Universal", "Interfaces", "CIncludes") # @@ -37,25 +37,25 @@ INCLUDEDIR=os.path.join(_MWERKSDIR, "MacOS Support", "Universal", "Interfaces", # your source directory, not your installed directory. # if sys.platform == 'mac': - TOOLBOXDIR=os.path.join(sys.prefix, "Lib", "plat-mac", "Carbon") + TOOLBOXDIR=os.path.join(sys.prefix, "Lib", "plat-mac", "Carbon") else: - TOOLBOXDIR="/Users/jack/src/python/Lib/plat-mac/Carbon" + TOOLBOXDIR="/Users/jack/src/python/Lib/plat-mac/Carbon" # Creator for C files: CREATOR="CWIE" if not os.path.exists(BGENDIR): - raise Error, "Please fix bgenlocations.py, BGENDIR does not exist: %s" % BGENDIR + raise Error, "Please fix bgenlocations.py, BGENDIR does not exist: %s" % BGENDIR if not os.path.exists(INCLUDEDIR): - raise Error, "Please fix bgenlocations.py, INCLUDEDIR does not exist: %s" % INCLUDEDIR + raise Error, "Please fix bgenlocations.py, INCLUDEDIR does not exist: %s" % INCLUDEDIR if not os.path.exists(TOOLBOXDIR): - raise Error, "Please fix bgenlocations.py, TOOLBOXDIR does not exist: %s" % TOOLBOXDIR - + raise Error, "Please fix bgenlocations.py, TOOLBOXDIR does not exist: %s" % TOOLBOXDIR + # Sigh, due to the way these are used make sure they end with : or /. if BGENDIR[-1] != os.sep: - BGENDIR = BGENDIR + os.sep + BGENDIR = BGENDIR + os.sep if INCLUDEDIR[-1] != os.sep: - INCLUDEDIR = INCLUDEDIR + os.sep + INCLUDEDIR = INCLUDEDIR + os.sep if TOOLBOXDIR[-1] != os.sep: - TOOLBOXDIR = TOOLBOXDIR + os.sep - + TOOLBOXDIR = TOOLBOXDIR + os.sep + |