diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-29 10:40:24 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-29 10:40:24 +0200 |
commit | 158875989f7ddcd5e004585e57c583b06cd75d6f (patch) | |
tree | d520984d38c716ce1d0bffc010c9a8b5de3159d5 | |
parent | 8fe5a9f9c309c50ff0cf3312483056d828cc61ec (diff) | |
parent | e6f3732915801b36c519f8eada7bfdf478bc950a (diff) | |
download | cpython-git-158875989f7ddcd5e004585e57c583b06cd75d6f.tar.gz |
Merge heads
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 6 |
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", |