1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-05 12:56:08 +00:00

use -I${DESTDIR}/usr/include/tcl, not -I/usr/include/tcl

This commit is contained in:
Peter Wemm 1997-08-18 11:39:19 +00:00
parent b2964d3a9e
commit 1e6f3a5daf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=28374

View File

@ -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}