summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2010-01-17 19:32:00 (GMT)
committerRonald Oussoren <ronaldoussoren@mac.com>2010-01-17 19:32:00 (GMT)
commit92397ce93faf0d9db9db33cb5d16cc7e1cf44d18 (patch)
tree9e849ff9cf0dd753fba7b7ddb8bf367d9ffbc57b /configure
parent3c0a1265c19c6fa676f6f632fb2e9bc773fb4abc (diff)
downloadcpython-92397ce93faf0d9db9db33cb5d16cc7e1cf44d18.zip
cpython-92397ce93faf0d9db9db33cb5d16cc7e1cf44d18.tar.gz
cpython-92397ce93faf0d9db9db33cb5d16cc7e1cf44d18.tar.bz2
Explicitly use /usr/bin/arch on OSX, fixes issue 7715
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index 40ed309..f29edc7 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.in Revision: 77585 .
+# From configure.in Revision: 77587 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for python 2.7.
#
@@ -4814,17 +4814,17 @@ echo "${ECHO_T}\"'-extract ppc7400'\"" >&6; }
elif test "$UNIVERSAL_ARCHS" = "all" ; then
UNIVERSAL_ARCH_FLAGS="-arch i386 -arch ppc -arch ppc64 -arch x86_64"
LIPO_32BIT_FLAGS="-extract ppc7400 -extract i386"
- ARCH_RUN_32BIT="arch -i386 -ppc"
+ ARCH_RUN_32BIT="/usr/bin/arch -i386 -ppc"
elif test "$UNIVERSAL_ARCHS" = "intel" ; then
UNIVERSAL_ARCH_FLAGS="-arch i386 -arch x86_64"
LIPO_32BIT_FLAGS="-extract i386"
- ARCH_RUN_32BIT="arch -i386"
+ ARCH_RUN_32BIT="/usr/bin/arch -i386"
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="arch -i386 -ppc7400"
+ ARCH_RUN_32BIT="/usr/bin/arch -i386 -ppc7400"
else
{ { echo "$as_me:$LINENO: error: proper usage is --with-universal-arch=32-bit|64-bit|all|intel|3-way" >&5