[Python-checkins] r65183 - in python/trunk: configure configure.in
ronald.oussoren
python-checkins at python.org
Tue Jul 22 09:06:00 CEST 2008
Author: ronald.oussoren
Date: Tue Jul 22 09:06:00 2008
New Revision: 65183
Log:
Fix buglet in fix for issue3381
Modified:
python/trunk/configure
python/trunk/configure.in
Modified: python/trunk/configure
==============================================================================
--- python/trunk/configure (original)
+++ python/trunk/configure Tue Jul 22 09:06:00 2008
@@ -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 @@
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
Modified: python/trunk/configure.in
==============================================================================
--- python/trunk/configure.in (original)
+++ python/trunk/configure.in Tue Jul 22 09:06:00 2008
@@ -925,7 +925,7 @@
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
More information about the Python-checkins
mailing list