diff options
author | bde <bde@FreeBSD.org> | 1998-01-17 15:52:32 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-01-17 15:52:32 +0000 |
commit | 6ac182269feb92e88a2f331e8c937b2d34a428f2 (patch) | |
tree | 936ab99288712eb98683f19476252a1ad9b23088 /tools | |
parent | eae19c3a546f5b920bd3ac89289cd54ad939783e (diff) | |
download | FreeBSD-src-6ac182269feb92e88a2f331e8c937b2d34a428f2.zip FreeBSD-src-6ac182269feb92e88a2f331e8c937b2d34a428f2.tar.gz |
Don't install the tcl implementation headers. The tcl distribution
makefile doesn't install them, and they couldn't be used without
lots of undocumented -I's in CFLAGS. tcl.h is still installed in
/usr/include/tcl/. Note that rev.1.24 of tcl_bmake/mkMakefile.sh
broke all the section 3 tcl man pages by putting it there instead
of in /usr/include.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/tools/tcl_bmake/mkMakefile.sh | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/tools/tools/tcl_bmake/mkMakefile.sh b/tools/tools/tcl_bmake/mkMakefile.sh index 3e3feea..10d3124 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.26 1997/10/01 13:31:29 phk Exp $ +# $Id: mkMakefile.sh,v 1.27 1998/01/17 15:49:48 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.26 1997/10/01 13:31:29 phk Exp $ +# $Id: mkMakefile.sh,v 1.27 1998/01/17 15:49:48 bde Exp $ # ' | tr -d '$' >> ${LIBTCL}Makefile @@ -98,9 +98,6 @@ $s/ \\$// ' >> ${LIBTCL}Makefile echo ' -HEADERS=generic/patchlevel.h generic/tclInt.h generic/tclPort.h \ - generic/tclRegexp.h unix/tclUnixPort.h - beforeinstall: installhdrs ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \ ${TCLDIST}/library/tclIndex ${DESTDIR}${TCL_LIBRARY} @@ -117,11 +114,6 @@ beforeinstall: installhdrs installhdrs: ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ ${TCLDIST}/generic/tcl.h ${DESTDIR}/usr/include/tcl -.for m in ${HEADERS} - ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${TCLDIST}/$m \ - ${DESTDIR}/usr/include/tcl/$m -.endfor - MANFILTER=sed "/\.so *man.macros/s;.*;.so /usr/share/tmac/tcl.macros;" ' >> ${LIBTCL}Makefile |