diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-02-11 13:19:34 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-02-11 13:19:34 (GMT) |
commit | 9922f178d3d34b2cd2191f21fdfc95e34da8008c (patch) | |
tree | 634bc1ca3923ede33f997e4b28f6caec78622c81 /configure.in | |
parent | 333fca9b3ec7204f0660b45694adafa744336d5f (diff) | |
download | cpython-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).
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
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]) |