summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorjlam <jlam>2003-11-27 04:11:40 +0000
committerjlam <jlam>2003-11-27 04:11:40 +0000
commit04f9b0d26d47809c7e7d5ffe090dc9ecc5caecef (patch)
tree4cc42e2168b2f105045843313bc388e04a6f58da /lang
parent7bab65e608bbb872351cd70b489b1f9b5cba5055 (diff)
downloadpkgsrc-04f9b0d26d47809c7e7d5ffe090dc9ecc5caecef.tar.gz
It's actually PASTHRU_INC, not INC.
Diffstat (limited to 'lang')
-rw-r--r--lang/perl5/module.mk9
1 files changed, 5 insertions, 4 deletions
diff --git a/lang/perl5/module.mk b/lang/perl5/module.mk
index 49ef848b7e6..e577a927560 100644
--- a/lang/perl5/module.mk
+++ b/lang/perl5/module.mk
@@ -1,4 +1,4 @@
-# $NetBSD: module.mk,v 1.25 2003/11/25 19:30:21 jlam Exp $
+# $NetBSD: module.mk,v 1.26 2003/11/27 04:11:40 jlam Exp $
#
# This Makefile fragment is intended to be included by packages that build
# and install perl5 modules.
@@ -92,10 +92,11 @@ LDFLAGS+= ${PERL5_LDFLAGS}
.include "../../mk/bsd.prefs.mk"
-# MakeMaker provides two hooks, INC and OTHERLDFLAGS, to customize the
-# arguments passed to the preprocessor and linker, respectively.
+# MakeMaker provides two hooks, PASTHRU_INC and OTHERLDFLAGS, to
+# customize the arguments passed to the preprocessor and linker,
+# respectively.
#
-MAKE_FLAGS+= INC="${CPPFLAGS}"
+MAKE_FLAGS+= PASTHRU_INC="${CPPFLAGS}"
.if ${OBJECT_FMT} == "a.out"
MAKE_FLAGS+= OTHERLDFLAGS="${LDFLAGS:S/-Wl,//g}"
.else