From 1e6f3a5daf801362a60d8a92722cd3d43eb35ff7 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Mon, 18 Aug 1997 11:39:19 +0000 Subject: [PATCH] use -I${DESTDIR}/usr/include/tcl, not -I/usr/include/tcl --- usr.bin/tclsh/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/tclsh/Makefile b/usr.bin/tclsh/Makefile index 2ef52e63efa..d93869ddc00 100644 --- a/usr.bin/tclsh/Makefile +++ b/usr.bin/tclsh/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1997/02/22 19:57:21 peter Exp $ +# $Id: Makefile,v 1.4 1997/08/18 06:08:56 andreas Exp $ PROG= tclsh SRCS= tclAppInit.c @@ -14,7 +14,7 @@ CLEANFILES= ${MAN1} tclsh.1: ${.CURDIR}/../../contrib/tcl/doc/tclsh.1 sed '/\.so *man.macros/s;.*;.so /usr/share/tmac/tcl.macros;' < $> > $@ -CFLAGS+= -I/usr/include/tcl +CFLAGS+= -I${DESTDIR}/usr/include/tcl LDADD+= -ltcl -lm DPADD+= ${LIBTCL} ${LIBM}