diff options
author | David Cournapeau <cournape@gmail.com> | 2009-11-16 10:01:51 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-11-16 10:01:51 +0000 |
commit | 09a0a0a29b65376d1fa0a2498ef62d7d8e016c8c (patch) | |
tree | a5ababff7c4839131b6bc1a2e3570e459613eb24 /pavement.py | |
parent | faafd31ce16d32e4a33ee8280354743179f1face (diff) | |
download | numpy-09a0a0a29b65376d1fa0a2498ef62d7d8e016c8c.tar.gz |
ENH: fix paver script for wine-built simple wininst installer.
Diffstat (limited to 'pavement.py')
-rw-r--r-- | pavement.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pavement.py b/pavement.py index f7f615c54..da982b022 100644 --- a/pavement.py +++ b/pavement.py @@ -83,7 +83,7 @@ setup_py = __import__("setup") FULLVERSION = setup_py.FULLVERSION # Wine config for win32 builds -WINE_SITE_CFG = "" +WINE_SITE_CFG = {} 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" @@ -353,7 +353,7 @@ def bdist_superpack(options): shutil.copy(source, target) @task -@needs('clean', 'bdist_wininst') +@needs('clean') def bdist_wininst_simple(): """Simple wininst-based installer.""" _bdist_wininst(pyver=options.wininst.pyver) |