diff options
author | Ralf Gommers <ralf.gommers@googlemail.com> | 2013-09-16 23:42:56 +0200 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@googlemail.com> | 2013-09-16 23:46:28 +0200 |
commit | 0c857a8e9025cb426ec086a732c02742cea8e285 (patch) | |
tree | 26cd8cdcd41ff4492f8c94043933e9312f594615 /pavement.py | |
parent | 4f1f9d27abe9f978ef940d248537f54e364f422d (diff) | |
download | numpy-0c857a8e9025cb426ec086a732c02742cea8e285.tar.gz |
MAINT: update release scripts for building OS X binaries.
Works with Python 3.x now that bdist_mpkg is ported (thanks @matthew-brett).
Diffstat (limited to 'pavement.py')
-rw-r--r-- | pavement.py | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/pavement.py b/pavement.py index f6ce1380f..41a9f3b46 100644 --- a/pavement.py +++ b/pavement.py @@ -24,8 +24,7 @@ as follows:: Building a simple (no-superpack) windows installer from wine ============================================================ -It assumes that blas/lapack are in c:\local\lib inside drive_c. Build python -2.5 and python 2.6 installers. +It assumes that blas/lapack are in c:\local\lib inside drive_c. paver bdist_wininst_simple @@ -437,12 +436,9 @@ def _build_mpkg(pyver): ldflags = "-undefined dynamic_lookup -bundle -arch i386 -arch x86_64 -Wl,-search_paths_first" else: ldflags = "-undefined dynamic_lookup -bundle -arch i386 -arch ppc -Wl,-search_paths_first" - ldflags += " -L%s" % os.path.join(os.path.dirname(__file__), "build") - if pyver == "2.5": - sh("CC=gcc-4.0 LDFLAGS='%s' %s setupegg.py bdist_mpkg" % (ldflags, " ".join(MPKG_PYTHON[pyver]))) - else: - sh("LDFLAGS='%s' %s setupegg.py bdist_mpkg" % (ldflags, " ".join(MPKG_PYTHON[pyver]))) + ldflags += " -L%s" % os.path.join(os.path.dirname(__file__), "build") + sh("LDFLAGS='%s' %s setupegg.py bdist_mpkg" % (ldflags, " ".join(MPKG_PYTHON[pyver]))) @task def simple_dmg(): |