summaryrefslogtreecommitdiff
path: root/devel/pcre/Makefile
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2005-12-05 20:49:47 +0000
committerrillig <rillig@pkgsrc.org>2005-12-05 20:49:47 +0000
commitb71a1d488b6b45e0a968a4c149990c25b6a09215 (patch)
treedac5b1dd14794d86b061d26b9503adb2552ed3f8 /devel/pcre/Makefile
parent624eed58928f83676fbd7ca01a5f6974bb2cce2a (diff)
downloadpkgsrc-b71a1d488b6b45e0a968a4c149990c25b6a09215.tar.gz
Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
Diffstat (limited to 'devel/pcre/Makefile')
-rw-r--r--devel/pcre/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/pcre/Makefile b/devel/pcre/Makefile
index c9598e77980..af1d8eac023 100644
--- a/devel/pcre/Makefile
+++ b/devel/pcre/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.27 2005/10/14 09:37:46 adam Exp $
+# $NetBSD: Makefile,v 1.28 2005/12/05 20:50:06 rillig Exp $
DISTNAME= pcre-6.4
PKGREVISION= 1
@@ -25,6 +25,6 @@ TEST_TARGET= test
# Avoid an ICE in gcc2 on sparc64
# use CONFIGURE_ARGS instead of the usual CONFIGURE_ENV as the latter just
# won't work with -this- configure
-CONFIGURE_ARGS+= F77=${FALSE}
+CONFIGURE_ARGS+= F77=${FALSE:Q}
.include "../../mk/bsd.pkg.mk"