diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-08-19 17:16:56 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-08-19 17:16:56 (GMT) |
commit | 3ad7ba10a20827b24d4b1aa9dd49474db8affbdd (patch) | |
tree | 36bdce177034f50df8753f6d29f699690fe73a13 /configure.in | |
parent | bc21bb3ff76c1e9a7af784c785a1eccbe7f4be1f (diff) | |
download | cpython-3ad7ba10a20827b24d4b1aa9dd49474db8affbdd.zip cpython-3ad7ba10a20827b24d4b1aa9dd49474db8affbdd.tar.gz cpython-3ad7ba10a20827b24d4b1aa9dd49474db8affbdd.tar.bz2 |
Merged revisions 65652-65653 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r65652 | ronald.oussoren | 2008-08-12 07:29:13 -0500 (Tue, 12 Aug 2008) | 2 lines
Fix typo in the `arch` commandline
........
r65653 | ronald.oussoren | 2008-08-12 07:41:45 -0500 (Tue, 12 Aug 2008) | 3 lines
Another fix for 4-way universal builds, use the right #ifndef guard
to detect the OSX 10.5 SDK.
........
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 870b8a9..b8a4575 100644 --- a/configure.in +++ b/configure.in @@ -871,7 +871,7 @@ yes) elif test "$UNIVERSAL_ARCHS" = "all" ; then UNIVERSAL_ARCH_FLAGS="-arch i386 -arch ppc -arch ppc64 -arch x86_64" - ARCH_RUN_32BIT="arch -386 -ppc" + ARCH_RUN_32BIT="arch -i386 -ppc" else AC_MSG_ERROR([proper usage is --with-universalarch=32-bit|64-bit|all]) |