summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2005-01-07 10:49:32 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2005-01-07 10:49:32 (GMT)
commitc110f8665f22b13561a728d493a7699ea0acdda0 (patch)
tree458e5bc0df684f2a1cef723aa5c42cc0d95b8d83 /configure
parent97db05de3ee09011205e32a3e7d79ad4b1544abe (diff)
downloadcpython-c110f8665f22b13561a728d493a7699ea0acdda0.zip
cpython-c110f8665f22b13561a728d493a7699ea0acdda0.tar.gz
cpython-c110f8665f22b13561a728d493a7699ea0acdda0.tar.bz2
Always set CONFIGURE_MACOSX_DEPLOYMENT_TARGET otherwise it may be set
to an empty value and distutils will get confused lateron.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index ca9134f..edb0b16 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.in Revision: 1.477 .
+# From configure.in Revision: 1.478 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.59 for python 2.5.
#
@@ -10323,11 +10323,11 @@ then
# Use -undefined dynamic_lookup whenever possible (10.3 and later).
# This allows an extension to be used in any Python
cur_target=`sw_vers -productVersion | sed 's/\(10\.[0-9]*\).*/\1/'`
+ CONFIGURE_MACOSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET-${cur_target}}
if test ${MACOSX_DEPLOYMENT_TARGET-${cur_target}} '>' 10.2
then
LDSHARED='$(CC) $(LDFLAGS) -bundle -undefined dynamic_lookup'
BLDSHARED="$LDSHARED"
- CONFIGURE_MACOSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET-${cur_target}}
else
LDSHARED='$(CC) $(LDFLAGS) -bundle'
if test "$enable_framework" ; then