summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorjmmv <jmmv>2002-12-11 22:56:23 +0000
committerjmmv <jmmv>2002-12-11 22:56:23 +0000
commit026bae658123c3c059f9109018471660e1920cfc (patch)
tree08a99d1944894c9f24dbe2ed95f763c3058a7065 /lang
parent0dcb9f0687e09f6e445fe06d21f48ddd286ef4e3 (diff)
downloadpkgsrc-026bae658123c3c059f9109018471660e1920cfc.tar.gz
Also quote CC and YACC when adding them to MAKEFLAGS (not done in last
commit). This can fix problems if it happens that those variables contain spaces (or some other special character). Suggested by Christopher Richards in private mail.
Diffstat (limited to 'lang')
-rw-r--r--lang/nawk/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/nawk/Makefile b/lang/nawk/Makefile
index 144fc1d2b94..1b6a8eb9e3c 100644
--- a/lang/nawk/Makefile
+++ b/lang/nawk/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.8 2002/12/11 10:21:17 jmmv Exp $
+# $NetBSD: Makefile,v 1.9 2002/12/11 22:56:23 jmmv Exp $
#
DISTNAME= awk
@@ -14,7 +14,7 @@ DIST_SUBDIR= ${PKGNAME}
WRKSRC= ${WRKDIR}
MAKEFILE= makefile
-MAKEFLAGS+= CC=${CC} YACC=${YACC} CFLAGS=${CFLAGS:Q}
+MAKEFLAGS+= CC=${CC:Q} YACC=${YACC:Q} CFLAGS=${CFLAGS:Q}
ALL_TARGET= a.out
post-build: