summaryrefslogtreecommitdiff
path: root/lang/perl58
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2004-02-06 19:04:24 +0000
committerjlam <jlam@pkgsrc.org>2004-02-06 19:04:24 +0000
commit3801df0a7f3b07f43fbafe68e4aeecb464132973 (patch)
tree9e1ed235761e43178980383a9260a8ca70040dfb /lang/perl58
parentafadf00def68756dd00a4107516c54ea47d99d80 (diff)
downloadpkgsrc-3801df0a7f3b07f43fbafe68e4aeecb464132973.tar.gz
If we're passing through MAKEFLAGS variables whose values may contain
spaces, use the :Q modifier instead of double-quoting the value. This avoids breakage when executing the just-in-time su targets.
Diffstat (limited to 'lang/perl58')
-rw-r--r--lang/perl58/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/perl58/Makefile b/lang/perl58/Makefile
index 20b0c9d3a97..77f8ffc84e0 100644
--- a/lang/perl58/Makefile
+++ b/lang/perl58/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.33 2004/02/05 08:45:31 uebayasi Exp $
+# $NetBSD: Makefile,v 1.34 2004/02/06 19:04:25 jlam Exp $
# The following two variables should have empty values unless we're
# building a perl snapshot or release candidate.
@@ -170,7 +170,7 @@ _GCC_IS_AT_LEAST_3_3!= \
else \
${ECHO} "NO"; \
fi
-MAKEFLAGS+= _GCC_IS_AT_LEAST_3_3="${_GCC_IS_AT_LEAST_3_3}"
+MAKEFLAGS+= _GCC_IS_AT_LEAST_3_3=${_GCC_IS_AT_LEAST_3_3}
. endif
. if !empty(_GCC_IS_AT_LEAST_3_3:M[nN][oO])
#