Module Name: src
Committed By: he
Date: Wed Dec 15 08:09:23 UTC 2010
Modified Files:
src/usr.bin/awk: Makefile
Log Message:
Make this build as part of the dist/miniroot build, where it's still
referenced. Adjust for the move from dist/ to external/.
To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/usr.bin/awk/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/awk/Makefile
diff -u src/usr.bin/awk/Makefile:1.14 src/usr.bin/awk/Makefile:1.15
--- src/usr.bin/awk/Makefile:1.14 Tue Apr 14 22:15:17 2009
+++ src/usr.bin/awk/Makefile Wed Dec 15 08:09:23 2010
@@ -1,15 +1,15 @@
-# $NetBSD: Makefile,v 1.14 2009/04/14 22:15:17 lukem Exp $
+# $NetBSD: Makefile,v 1.15 2010/12/15 08:09:23 he Exp $
WARNS?= 1 # fails -Wshadow -Wcast-qual
.include <bsd.own.mk>
-DIST= ${NETBSDSRCDIR}/dist
-.PATH: ${DIST}/nawk
+DIST= ${NETBSDSRCDIR}/external/historical/nawk/dist/
+.PATH: ${DIST}
PROG= awk
SRCS= awkgram.y b.c lex.c lib.c main.c parse.c proctab.c run.c tran.c
-CPPFLAGS+= -I${DIST}/nawk -I. -DHAS_ISBLANK
+CPPFLAGS+= -I${DIST} -I. -DHAS_ISBLANK
LDADD+= -lm
.if !defined(HOSTPROG)
DPADD+= ${LIBM}