diff options
author | peter <peter@FreeBSD.org> | 1996-08-29 19:30:50 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-08-29 19:30:50 +0000 |
commit | ede8f9e32c258a1695683d633ffc6930b0067946 (patch) | |
tree | e2706f8b2ff0fdc3e2c0463b3c262d3cad217b36 /tools | |
parent | a4451e14cb8b614d2330dc98aafd2e66f048243f (diff) | |
download | FreeBSD-src-ede8f9e32c258a1695683d633ffc6930b0067946.zip FreeBSD-src-ede8f9e32c258a1695683d633ffc6930b0067946.tar.gz |
Fix the sed rule that I used to hammer out the TCL_BUILD_LIB_SPEC entry
from tclConfig.sh.. It needs to be valid for the tk41 port to use...
Diffstat (limited to 'tools')
-rw-r--r-- | tools/tools/tcl_bmake/mkMakefile.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/tools/tcl_bmake/mkMakefile.sh b/tools/tools/tcl_bmake/mkMakefile.sh index 8b7d652..b359108 100644 --- a/tools/tools/tcl_bmake/mkMakefile.sh +++ b/tools/tools/tcl_bmake/mkMakefile.sh @@ -1,5 +1,5 @@ #! /bin/sh -# $Id: mkMakefile.sh,v 1.6 1996/08/29 10:28:51 peter Exp $ +# $Id: mkMakefile.sh,v 1.7 1996/08/29 16:46:14 chuckr Exp $ # # This script generates a bmake Makefile for src/lib/libtcl # @@ -40,7 +40,7 @@ echo '# # Please change src/tools/tools/tcl_bmake/mkMakefile.sh instead # # Generated by src/tools/tools/tcl_bmake/mkMakefile.sh version: -# $Id: mkMakefile.sh,v 1.6 1996/08/29 10:28:51 peter Exp $ +# $Id: mkMakefile.sh,v 1.7 1996/08/29 16:46:14 chuckr Exp $ # ' | tr -d '$' >> ${LIBTCL}Makefile @@ -162,7 +162,7 @@ echo ' .include <bsd.lib.mk> ' >> ${LIBTCL}Makefile -sed -e '/^TCL_BUILD_LIB_SPEC=/s/^/#XXX not available# /' < ${SRCDIR}/unix/tclConfig.sh > ${LIBTCL}/tclConfig.sh +sed -e '/^TCL.*_LIB_SPEC=/s/-L.* //' < ${SRCDIR}/unix/tclConfig.sh > ${LIBTCL}/tclConfig.sh rm -f m.x ${SRCDIR}/unix/config.log ${SRCDIR}/unix/Makefile ${SRCDIR}/unix/config.cache ${SRCDIR}/unix/config.status ${SRCDIR}/unix/tclConfig.sh |