diff options
author | wiz <wiz> | 2005-02-19 19:09:38 +0000 |
---|---|---|
committer | wiz <wiz> | 2005-02-19 19:09:38 +0000 |
commit | fbcdd96ba93dd7d2428f2576552bbc017c620333 (patch) | |
tree | 90bdee0e8bb117331e50c41978177c91960ef2c6 /converters | |
parent | 4479d5c5e35b5b8f72e0035eeb0b8ddf81d39537 (diff) | |
download | pkgsrc-fbcdd96ba93dd7d2428f2576552bbc017c620333.tar.gz |
Reorder lines to avoid build errors because of "LIBS= INSTALLDIRS=site".
Diffstat (limited to 'converters')
-rw-r--r-- | converters/p5-Text-Iconv/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/converters/p5-Text-Iconv/Makefile b/converters/p5-Text-Iconv/Makefile index 5194799e18e..66c5676ca9a 100644 --- a/converters/p5-Text-Iconv/Makefile +++ b/converters/p5-Text-Iconv/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2005/02/19 19:00:18 wiz Exp $ +# $NetBSD: Makefile,v 1.15 2005/02/19 19:09:38 wiz Exp $ # DISTNAME= Text-Iconv-1.4 @@ -14,8 +14,11 @@ COMMENT= Perl interface to iconv() codeset conversion function USE_BUILDLINK3= YES PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/Text/Iconv/.packlist -MAKE_PARAMS= LIBS=${BUILDLINK_LDADD.iconv} .include "../../converters/libiconv/buildlink3.mk" .include "../../lang/perl5/module.mk" +# if this line is too high up and BUILDLINK_LDADD.iconv +# is empty, LIBS will be set to the following argument in +# MAKE_PARAMS +MAKE_PARAMS+= LIBS=${BUILDLINK_LDADD.iconv} .include "../../mk/bsd.pkg.mk" |