summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-01-29 10:40:24 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2013-01-29 10:40:24 +0200
commit158875989f7ddcd5e004585e57c583b06cd75d6f (patch)
treed520984d38c716ce1d0bffc010c9a8b5de3159d5
parent8fe5a9f9c309c50ff0cf3312483056d828cc61ec (diff)
parente6f3732915801b36c519f8eada7bfdf478bc950a (diff)
downloadcpython-git-158875989f7ddcd5e004585e57c583b06cd75d6f.tar.gz
Merge heads
-rwxr-xr-xMac/BuildScript/build-installer.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py
index bd0c476daf..004765ae58 100755
--- a/Mac/BuildScript/build-installer.py
+++ b/Mac/BuildScript/build-installer.py
@@ -192,7 +192,8 @@ def library_recipes():
LT_10_5 = bool(DEPTARGET < '10.5')
- result.extend([
+ if getVersionTuple() >= (3, 3):
+ result.extend([
dict(
name="XZ 5.0.3",
url="http://tukaani.org/xz/xz-5.0.3.tar.gz",
@@ -201,6 +202,9 @@ def library_recipes():
'--disable-dependency-tracking',
]
),
+ ])
+
+ result.extend([
dict(
name="NCurses 5.9",
url="http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.9.tar.gz",