summaryrefslogtreecommitdiffstats
path: root/unix/tcl.m4
diff options
context:
space:
mode:
authordas <das>2007-09-18 12:46:17 (GMT)
committerdas <das>2007-09-18 12:46:17 (GMT)
commit42a132215bdb8ca11bcd34791f14a3201c02e6e4 (patch)
tree45189a6992a17b040bfa111be819576f9d44a2cb /unix/tcl.m4
parentd919cf88095340a149d3df492ecc966b0bf6336d (diff)
downloadtcl-42a132215bdb8ca11bcd34791f14a3201c02e6e4.zip
tcl-42a132215bdb8ca11bcd34791f14a3201c02e6e4.tar.gz
tcl-42a132215bdb8ca11bcd34791f14a3201c02e6e4.tar.bz2
fix quoting of new FreeBSD SHLIB_LD
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r--unix/tcl.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4
index dd36bf1..73c1606 100644
--- a/unix/tcl.m4
+++ b/unix/tcl.m4
@@ -1563,7 +1563,7 @@ dnl AC_CHECK_TOOL(AR, ar)
# FreeBSD 3.* and greater have ELF.
# NetBSD 2.* has ELF and can use 'cc -shared' to build shared libs
SHLIB_CFLAGS="-fPIC"
- SHLIB_LD="${CC} -shared ${SHLIB_CFLAGS}"
+ SHLIB_LD='${CC} -shared ${SHLIB_CFLAGS}'
SHLIB_LD_LIBS='${LIBS}'
SHLIB_SUFFIX=".so"
DL_OBJS="tclLoadDl.o"