diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2008-07-22 07:06:00 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2008-07-22 07:06:00 (GMT) |
commit | 5a849d4911331b40e7effe842c7ea6fa69b32c3b (patch) | |
tree | 5ecd23d7369da6d0528c1986d259c6fcb162c28b /configure | |
parent | 0470bab69783c13447cb634fa403ef1067fe56d1 (diff) | |
download | cpython-5a849d4911331b40e7effe842c7ea6fa69b32c3b.zip cpython-5a849d4911331b40e7effe842c7ea6fa69b32c3b.tar.gz cpython-5a849d4911331b40e7effe842c7ea6fa69b32c3b.tar.bz2 |
Fix buglet in fix for issue3381
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 65033 . +# From configure.in Revision: 65061 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.61 for python 2.6. # @@ -4667,7 +4667,7 @@ echo "$as_me: error: proper usage is --with-universalarch=32-bit|64-bit|all" >&2 BASECFLAGS="${UNIVERSAL_ARCH_FLAGS} -isysroot ${UNIVERSALSDK} ${BASECFLAGS}" - tgt=`sw_vers -productVersion | sed 's/\(10\.0-9*\).*/\1/'` + tgt=`sw_vers -productVersion | sed 's/\(10\.[0-9]*\).*/\1/'` if test "${UNIVERSALSDK}" != "/" -a "${tgt}" '>' '10.4' ; then CFLAGS="${UNIVERSAL_ARCH_FLAGS} -isysroot ${UNIVERSALSDK} ${CFLAGS}" fi |