summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Tools/bgen/bgen/bgenlocations.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/bgen/bgen/bgenlocations.py b/Tools/bgen/bgen/bgenlocations.py
index 341f77d19e..fbe80e165f 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"