summaryrefslogtreecommitdiffstats
path: root/unix/Makefile.in
diff options
context:
space:
mode:
authordas <das@noemail.net>2002-07-24 13:51:16 (GMT)
committerdas <das@noemail.net>2002-07-24 13:51:16 (GMT)
commit596e2de7be8b17b7455ae57c4b7837e49103146f (patch)
treeb65906e3add473c0e18741e513241c2edc0f7112 /unix/Makefile.in
parentc21bfc88390026417ac0f064c2786b979cb9854c (diff)
downloadtcl-596e2de7be8b17b7455ae57c4b7837e49103146f.zip
tcl-596e2de7be8b17b7455ae57c4b7837e49103146f.tar.gz
tcl-596e2de7be8b17b7455ae57c4b7837e49103146f.tar.bz2
* unix/Makefile.in:
* unix/configure.in: corrected fix for [Bug 529801]: ranlib only needed for static builds on Mac OS X. * unix/configure: Regen. * unix/tclLoadDyld.c: fixed small bugs introduced by Vince, implemented library unloading correctly (needs OS X 10.2). FossilOrigin-Name: 455e67ee4b97f464fbdc145edd1e7709564fb31c
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r--unix/Makefile.in5
1 files changed, 2 insertions, 3 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in
index fbca974..fe2013c 100644
--- a/unix/Makefile.in
+++ b/unix/Makefile.in
@@ -5,7 +5,7 @@
# "autoconf" program (constructs like "@foo@" will get replaced in the
# actual Makefile.
#
-# RCS: @(#) $Id: Makefile.in,v 1.109 2002/07/23 17:30:06 mdejong Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.110 2002/07/24 13:51:18 das Exp $
VERSION = @TCL_VERSION@
@@ -433,8 +433,7 @@ doc:
${TCL_LIB_FILE}: ${OBJS} ${STUB_LIB_FILE}
rm -f ${TCL_LIB_FILE}
@MAKE_LIB@
- @if test "x@DL_OBJS@" = "xtclLoadAout.o" || \
- test "x@DL_OBJS@" = "xtclLoadDyld.o" ; then \
+ @if test "x@DL_OBJS@" = "xtclLoadAout.o" ; then \
echo "$(RANLIB) ${TCL_LIB_FILE}"; \
$(RANLIB) ${TCL_LIB_FILE}; \
fi