[Python-checkins] cpython (merge 3.3 -> default): Issue #14018: merge to default

ned.deily python-checkins at python.org
Tue Jan 29 09:19:58 CET 2013


http://hg.python.org/cpython/rev/888590641c49
changeset:   81802:888590641c49
parent:      81797:8b9910d8d27f
parent:      81801:6e6a76166c47
user:        Ned Deily <nad at acm.org>
date:        Tue Jan 29 00:18:52 2013 -0800
summary:
  Issue #14018: merge to default

files:
  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
--- a/Mac/BuildScript/build-installer.py
+++ b/Mac/BuildScript/build-installer.py
@@ -192,7 +192,8 @@
 
     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 @@
                     '--disable-dependency-tracking',
               ]
               ),
+        ])
+
+    result.extend([
           dict(
               name="NCurses 5.9",
               url="http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.9.tar.gz",

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list