summaryrefslogtreecommitdiffstats
path: root/unix/configure
diff options
context:
space:
mode:
authordas <das>2005-12-01 02:14:17 (GMT)
committerdas <das>2005-12-01 02:14:17 (GMT)
commit69017663e915a742c38e4087eb54af223885cf2e (patch)
tree0358f7fb5adf0a578bd974c29421ff461dcb01f1 /unix/configure
parentf4014a57db9561af6d9540399afc14cb2ed64523 (diff)
downloadtcl-69017663e915a742c38e4087eb54af223885cf2e.zip
tcl-69017663e915a742c38e4087eb54af223885cf2e.tar.gz
tcl-69017663e915a742c38e4087eb54af223885cf2e.tar.bz2
* unix/tcl.m4 (Darwin): fixed error when MACOSX_DEPLOYMENT_TARGET unset.
* unix/configure: regen.
Diffstat (limited to 'unix/configure')
-rwxr-xr-xunix/configure5
1 files changed, 2 insertions, 3 deletions
diff --git a/unix/configure b/unix/configure
index 2f721f3..be870d8 100755
--- a/unix/configure
+++ b/unix/configure
@@ -7238,10 +7238,9 @@ echo "${ECHO_T}$tcl_cv_ld_single_module" >&6
DL_OBJS="tclLoadDyld.o"
DL_LIBS=""
# Don't use -prebind when building for Mac OS X 10.4 or later only:
- if test -z "${MACOSX_DEPLOYMENT_TARGET}" -o \
- `echo "${MACOSX_DEPLOYMENT_TARGET}" | awk -F. '{print $2}'` -lt 4; then
+ test -z "${MACOSX_DEPLOYMENT_TARGET}" || \
+ test "`echo "${MACOSX_DEPLOYMENT_TARGET}" | awk -F. '{print $2}'`" -lt 4 && \
LDFLAGS="$LDFLAGS -prebind"
- fi
LDFLAGS="$LDFLAGS -headerpad_max_install_names"
echo "$as_me:$LINENO: checking if ld accepts -search_paths_first flag" >&5
echo $ECHO_N "checking if ld accepts -search_paths_first flag... $ECHO_C" >&6