]> granicus.if.org Git - python/commitdiff
Don't lie about the supported architectures in the OSX installer
authorRonald Oussoren <ronaldoussoren@mac.com>
Wed, 20 Oct 2010 12:56:56 +0000 (12:56 +0000)
committerRonald Oussoren <ronaldoussoren@mac.com>
Wed, 20 Oct 2010 12:56:56 +0000 (12:56 +0000)
Without this patch the i386/x86_64 installer for OSX 10.6
lies in the ReadMe file and the "Important Information" screen
of the installer (that is, the installer claims it supports
the i386 and ppc architectures insetead of the ones it really
supports)

Mac/BuildScript/build-installer.py

index e1263087fc61deaf07a480237cab02530e4afdb7..9ddfda989af574fdb2f90e7426da8d4c480bfa9e 100755 (executable)
@@ -866,7 +866,7 @@ def patchFile(inPath, outPath):
     data = data.replace('$FULL_VERSION', getFullVersion())
     data = data.replace('$VERSION', getVersion())
     data = data.replace('$MACOSX_DEPLOYMENT_TARGET', ''.join((DEPTARGET, ' or later')))
-    data = data.replace('$ARCHITECTURES', "i386, ppc")
+    data = data.replace('$ARCHITECTURES', ", ".join(universal_opts_map[UNIVERSALARCHS]))
     data = data.replace('$INSTALL_SIZE', installSize())
 
     # This one is not handy as a template variable