Commit e3da75a7 authored by Ronald Oussoren's avatar Ronald Oussoren

Merged revisions 78154 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r78154 | ronald.oussoren | 2010-02-11 14:26:54 +0100 (Thu, 11 Feb 2010) | 2 lines

  Finish fix for issue 7715, after explicit search for calls to `arch`
........
parent 564f7f2c
#! /bin/sh #! /bin/sh
# From configure.in Revision: 78095 . # From configure.in Revision: 78152 .
# Guess values for system-dependent variables and create Makefiles. # Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for python 3.2. # Generated by GNU Autoconf 2.61 for python 3.2.
# #
...@@ -4730,7 +4730,7 @@ echo "$as_me: error: proper usage is --with-universal-arch=32-bit|64-bit|all|int ...@@ -4730,7 +4730,7 @@ echo "$as_me: error: proper usage is --with-universal-arch=32-bit|64-bit|all|int
cur_target='10.5' cur_target='10.5'
fi fi
else else
if test `arch` = "i386"; then if test `/usr/bin/arch` = "i386"; then
# On Intel macs default to a deployment # On Intel macs default to a deployment
# target of 10.4, that's the first OSX # target of 10.4, that's the first OSX
# release with Intel support. # release with Intel support.
...@@ -14449,7 +14449,7 @@ case $ac_sys_system/$ac_sys_release in ...@@ -14449,7 +14449,7 @@ case $ac_sys_system/$ac_sys_release in
if test "${enable_universalsdk}"; then if test "${enable_universalsdk}"; then
: :
else else
LIBTOOL_CRUFT="${LIBTOOL_CRUFT} -arch_only `arch`" LIBTOOL_CRUFT="${LIBTOOL_CRUFT} -arch_only `/usr/bin/arch`"
fi fi
LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -install_name $(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)' LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -install_name $(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -compatibility_version $(VERSION) -current_version $(VERSION)';; LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -compatibility_version $(VERSION) -current_version $(VERSION)';;
...@@ -14517,7 +14517,7 @@ fi ...@@ -14517,7 +14517,7 @@ fi
if test "${ac_osx_32bit}" = "yes"; then if test "${ac_osx_32bit}" = "yes"; then
case `arch` in case `/usr/bin/arch` in
i386) i386)
MACOSX_DEFAULT_ARCH="i386" MACOSX_DEFAULT_ARCH="i386"
;; ;;
...@@ -14531,7 +14531,7 @@ echo "$as_me: error: Unexpected output of 'arch' on OSX" >&2;} ...@@ -14531,7 +14531,7 @@ echo "$as_me: error: Unexpected output of 'arch' on OSX" >&2;}
;; ;;
esac esac
else else
case `arch` in case `/usr/bin/arch` in
i386) i386)
MACOSX_DEFAULT_ARCH="x86_64" MACOSX_DEFAULT_ARCH="x86_64"
;; ;;
......
...@@ -982,7 +982,7 @@ EOF ...@@ -982,7 +982,7 @@ EOF
cur_target='10.5' cur_target='10.5'
fi fi
else else
if test `arch` = "i386"; then if test `/usr/bin/arch` = "i386"; then
# On Intel macs default to a deployment # On Intel macs default to a deployment
# target of 10.4, that's the first OSX # target of 10.4, that's the first OSX
# release with Intel support. # release with Intel support.
...@@ -1508,7 +1508,7 @@ case $ac_sys_system/$ac_sys_release in ...@@ -1508,7 +1508,7 @@ case $ac_sys_system/$ac_sys_release in
if test "${enable_universalsdk}"; then if test "${enable_universalsdk}"; then
: :
else else
LIBTOOL_CRUFT="${LIBTOOL_CRUFT} -arch_only `arch`" LIBTOOL_CRUFT="${LIBTOOL_CRUFT} -arch_only `/usr/bin/arch`"
fi fi
LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -install_name $(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)' LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -install_name $(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -compatibility_version $(VERSION) -current_version $(VERSION)';; LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -compatibility_version $(VERSION) -current_version $(VERSION)';;
...@@ -1535,7 +1535,7 @@ case $ac_sys_system/$ac_sys_release in ...@@ -1535,7 +1535,7 @@ case $ac_sys_system/$ac_sys_release in
ac_osx_32bit=yes) ac_osx_32bit=yes)
if test "${ac_osx_32bit}" = "yes"; then if test "${ac_osx_32bit}" = "yes"; then
case `arch` in case `/usr/bin/arch` in
i386) i386)
MACOSX_DEFAULT_ARCH="i386" MACOSX_DEFAULT_ARCH="i386"
;; ;;
...@@ -1547,7 +1547,7 @@ case $ac_sys_system/$ac_sys_release in ...@@ -1547,7 +1547,7 @@ case $ac_sys_system/$ac_sys_release in
;; ;;
esac esac
else else
case `arch` in case `/usr/bin/arch` in
i386) i386)
MACOSX_DEFAULT_ARCH="x86_64" MACOSX_DEFAULT_ARCH="x86_64"
;; ;;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment