summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2010-02-11 13:19:34 (GMT)
committerRonald Oussoren <ronaldoussoren@mac.com>2010-02-11 13:19:34 (GMT)
commit9922f178d3d34b2cd2191f21fdfc95e34da8008c (patch)
tree634bc1ca3923ede33f997e4b28f6caec78622c81
parent333fca9b3ec7204f0660b45694adafa744336d5f (diff)
downloadcpython-9922f178d3d34b2cd2191f21fdfc95e34da8008c.zip
cpython-9922f178d3d34b2cd2191f21fdfc95e34da8008c.tar.gz
cpython-9922f178d3d34b2cd2191f21fdfc95e34da8008c.tar.bz2
Fix copy&paste error in the definition of ARCH_RUN_32BIT for a 3-way universal
build (all other definition where correct).
-rwxr-xr-xconfigure4
-rw-r--r--configure.in2
2 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index f29edc7..2870e31 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.in Revision: 77587 .
+# From configure.in Revision: 77588 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for python 2.7.
#
@@ -4824,7 +4824,7 @@ echo "${ECHO_T}\"'-extract ppc7400'\"" >&6; }
elif test "$UNIVERSAL_ARCHS" = "3-way" ; then
UNIVERSAL_ARCH_FLAGS="-arch i386 -arch ppc -arch x86_64"
LIPO_32BIT_FLAGS="-extract ppc7400 -extract i386"
- ARCH_RUN_32BIT="/usr/bin/arch -i386 -ppc7400"
+ ARCH_RUN_32BIT="/usr/bin/arch -i386 -ppc"
else
{ { echo "$as_me:$LINENO: error: proper usage is --with-universal-arch=32-bit|64-bit|all|intel|3-way" >&5
diff --git a/configure.in b/configure.in
index 7cd64d8..6f317c8 100644
--- a/configure.in
+++ b/configure.in
@@ -1063,7 +1063,7 @@ EOF
elif test "$UNIVERSAL_ARCHS" = "3-way" ; then
UNIVERSAL_ARCH_FLAGS="-arch i386 -arch ppc -arch x86_64"
LIPO_32BIT_FLAGS="-extract ppc7400 -extract i386"
- ARCH_RUN_32BIT="/usr/bin/arch -i386 -ppc7400"
+ ARCH_RUN_32BIT="/usr/bin/arch -i386 -ppc"
else
AC_MSG_ERROR([proper usage is --with-universal-arch=32-bit|64-bit|all|intel|3-way])