diff options
author | das <das> | 2007-09-18 12:46:27 (GMT) |
---|---|---|
committer | das <das> | 2007-09-18 12:46:27 (GMT) |
commit | c8809a7444a9e04661df2862a1355074ef435776 (patch) | |
tree | 801f6c4037709aed01eb217de10ceaea9ef71445 /unix | |
parent | 1933affb11b09fd0940bfed474956d99a09994ad (diff) | |
download | tk-c8809a7444a9e04661df2862a1355074ef435776.zip tk-c8809a7444a9e04661df2862a1355074ef435776.tar.gz tk-c8809a7444a9e04661df2862a1355074ef435776.tar.bz2 |
fix quoting of new FreeBSD SHLIB_LD
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tcl.m4 | 2 |
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" |