diff options
author | bde <bde@FreeBSD.org> | 1998-03-23 13:15:41 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-03-23 13:15:41 +0000 |
commit | 0483657e2562f644b80586566f9aea8fc09f914c (patch) | |
tree | 729cb642af84250cec98c2652f19924756b07a44 /tools | |
parent | ad583a718772d3e9c2e231544e13fdec07f0032a (diff) | |
download | FreeBSD-src-0483657e2562f644b80586566f9aea8fc09f914c.zip FreeBSD-src-0483657e2562f644b80586566f9aea8fc09f914c.tar.gz |
Install tclAppInit.c in the installhdrs step so that it isn't necessary
to build libtcl twice in `make world'.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/tools/tcl_bmake/mkMakefile.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/tools/tcl_bmake/mkMakefile.sh b/tools/tools/tcl_bmake/mkMakefile.sh index 10d3124..0c2ca73 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.27 1998/01/17 15:49:48 bde Exp $ +# $Id: mkMakefile.sh,v 1.28 1998/01/17 15:52:22 bde Exp $ # # This script generates a bmake Makefile for src/lib/libtcl # @@ -45,7 +45,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.27 1998/01/17 15:49:48 bde Exp $ +# $Id: mkMakefile.sh,v 1.28 1998/01/17 15:52:22 bde Exp $ # ' | tr -d '$' >> ${LIBTCL}Makefile @@ -107,13 +107,13 @@ beforeinstall: installhdrs $$e/*.tcl ${DESTDIR}${TCL_LIBRARY}/$$e ; \ done ) ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \ - ${TCLDIST}/unix/tclAppInit.c ${DESTDIR}${TCL_LIBRARY} - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \ ${TCLDIST}/doc/man.macros ${DESTDIR}/usr/share/tmac/tcl.macros installhdrs: ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ ${TCLDIST}/generic/tcl.h ${DESTDIR}/usr/include/tcl + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \ + ${TCLDIST}/unix/tclAppInit.c ${DESTDIR}${TCL_LIBRARY} MANFILTER=sed "/\.so *man.macros/s;.*;.so /usr/share/tmac/tcl.macros;" ' >> ${LIBTCL}Makefile |