Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3ad7ba1

Browse files
committed
Merged revisions 65652-65653 via svnmerge from
svn+ssh://[email protected]/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. ........
1 parent bc21bb3 commit 3ad7ba1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /bin/sh
2-
# From configure.in Revision: 65034 .
2+
# From configure.in Revision: 65206 .
33
# Guess values for system-dependent variables and create Makefiles.
44
# Generated by GNU Autoconf 2.61 for python 3.0.
55
#
@@ -4601,7 +4601,7 @@ echo "${ECHO_T}$ac_cv_no_strict_aliasing_ok" >&6; }
46014601

46024602
elif test "$UNIVERSAL_ARCHS" = "all" ; then
46034603
UNIVERSAL_ARCH_FLAGS="-arch i386 -arch ppc -arch ppc64 -arch x86_64"
4604-
ARCH_RUN_32BIT="arch -386 -ppc"
4604+
ARCH_RUN_32BIT="arch -i386 -ppc"
46054605

46064606
else
46074607
{ { echo "$as_me:$LINENO: error: proper usage is --with-universalarch=32-bit|64-bit|all" >&5

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -871,7 +871,7 @@ yes)
871871

872872
elif test "$UNIVERSAL_ARCHS" = "all" ; then
873873
UNIVERSAL_ARCH_FLAGS="-arch i386 -arch ppc -arch ppc64 -arch x86_64"
874-
ARCH_RUN_32BIT="arch -386 -ppc"
874+
ARCH_RUN_32BIT="arch -i386 -ppc"
875875

876876
else
877877
AC_MSG_ERROR([proper usage is --with-universalarch=32-bit|64-bit|all])

0 commit comments

Comments
 (0)