summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorsalo <salo@pkgsrc.org>2005-04-02 11:32:48 +0000
committersalo <salo@pkgsrc.org>2005-04-02 11:32:48 +0000
commit0197ec2d76f3d0f6c05cb9bdee3ed9e415942b86 (patch)
tree76f4a2c32e9de46dc342e68f917ef23104201e62 /lang
parentac9c4cdc616d8ba594b99a65ad42627311f91c4d (diff)
downloadpkgsrc-0197ec2d76f3d0f6c05cb9bdee3ed9e415942b86.tar.gz
Pullup ticket 416 - requested by Klaus Heinz
build infrastructure fix for perl5 Revisions pulled up: - pkgsrc/lang/perl5/module.mk 1.44 Module Name: pkgsrc Committed By: heinz Date: Fri Apr 1 22:37:44 UTC 2005 Modified Files: pkgsrc/lang/perl5: module.mk Log Message: BUILDING_PERL5 is _always_ defined now, so test for a specific value. This fixes (at least) the build of mail/p5-razor-agents on NetBSD 1.6.2. Ok'ed by jlam.
Diffstat (limited to 'lang')
-rw-r--r--lang/perl5/module.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/perl5/module.mk b/lang/perl5/module.mk
index 6902d91637c..ee810356406 100644
--- a/lang/perl5/module.mk
+++ b/lang/perl5/module.mk
@@ -1,4 +1,4 @@
-# $NetBSD: module.mk,v 1.42 2005/02/26 00:04:48 jlam Exp $
+# $NetBSD: module.mk,v 1.42.2.1 2005/04/02 11:32:48 salo Exp $
#
# This Makefile fragment is intended to be included by packages that build
# and install perl5 modules.
@@ -177,7 +177,7 @@ GENERATE_PLIST+= ${PERL5_GENERATE_PLIST};
# directory where the perllocal.pod file should be installed, which
# should point into the package prefix.
#
-.if !defined(BUILDING_PERL5)
+.if empty(BUILDING_PERL5:M[yY][eE][sS])
MAKE_FLAGS+= ${PERL5_MAKE_FLAGS}
BUILD_MAKE_FLAGS= ${MAKE_FLAGS}
BUILD_MAKE_FLAGS+= INSTALLARCHLIB="${VIEWBASE}/${PERL5_SUB_INSTALLARCHLIB}"