summaryrefslogtreecommitdiff
path: root/pavement.py
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2009-03-27 19:01:10 +0000
committerDavid Cournapeau <cournape@gmail.com>2009-03-27 19:01:10 +0000
commit7cc010896164ebca8f064989e9db8482ec507354 (patch)
treef24e96ba04914774b002e2964718ce1e084abe4c /pavement.py
parent52fb78d4ed64acd6d0d64a10a7ac2c21ab5c18e0 (diff)
downloadnumpy-7cc010896164ebca8f064989e9db8482ec507354.tar.gz
Add darwine config.
Diffstat (limited to 'pavement.py')
-rw-r--r--pavement.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/pavement.py b/pavement.py
index 4adb75ff9..ff3eac3df 100644
--- a/pavement.py
+++ b/pavement.py
@@ -62,8 +62,12 @@ FULLVERSION = setup_py.FULLVERSION
# Wine config for win32 builds
WINE_SITE_CFG = ""
-WINE_PY25 = "/home/david/.wine/drive_c/Python25/python.exe"
-WINE_PY26 = "/home/david/.wine/drive_c/Python26/python.exe"
+if sys.platform == "darwin":
+ WINE_PY25 = "/Applications/Darwine/Wine.bundle/Contents/bin/wine /Users/david/.wine/drive_c/Python25/python.exe"
+ WINE_PY26 = "/Applications/Darwine/Wine.bundle/Contents/bin/wine /Users/david/.wine/drive_c/Python26/python.exe"
+else:
+ WINE_PY25 = "/home/david/.wine/drive_c/Python25/python.exe"
+ WINE_PY26 = "/home/david/.wine/drive_c/Python26/python.exe"
WINE_PYS = {'2.6' : WINE_PY26, '2.5': WINE_PY25}
SUPERPACK_BUILD = 'build-superpack'
SUPERPACK_BINDIR = os.path.join(SUPERPACK_BUILD, 'binaries')