diff options
author | jlam <jlam> | 2005-07-13 18:01:18 +0000 |
---|---|---|
committer | jlam <jlam> | 2005-07-13 18:01:18 +0000 |
commit | d4ffd78b7485efe90299999629f0ca3d63736a00 (patch) | |
tree | 373bc74380ffe5c33d31e8ac4e10fc7ef8afd25a /chat/irssi | |
parent | 86313e3cab4d2cbaf75eb3cdeae38888ce183c62 (diff) | |
download | pkgsrc-d4ffd78b7485efe90299999629f0ca3d63736a00.tar.gz |
Turn PERL5_PACKLIST into a relative path instead of an absolute path.
These paths are now relative to PERL5_PACKLIST_DIR, which currently
defaults to ${PERL5_SITEARCH}. There is no change to the binary
packages.
Diffstat (limited to 'chat/irssi')
-rw-r--r-- | chat/irssi/options.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chat/irssi/options.mk b/chat/irssi/options.mk index 90f8341bf09..2d897a52f7b 100644 --- a/chat/irssi/options.mk +++ b/chat/irssi/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.1 2005/05/31 21:58:38 wiz Exp $ +# $NetBSD: options.mk,v 1.2 2005/07/13 18:01:19 jlam Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.irssi PKG_SUPPORTED_OPTIONS= inet6 irssi-perl ssl @@ -7,10 +7,10 @@ PKG_OPTIONS_LEGACY_VARS+= IRSSI_USE_PERL:irssi-perl IRSSI_USE_SSL:ssl .include "../../mk/bsd.options.mk" .if !empty(PKG_OPTIONS:Mirssi-perl) -PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/Irssi/.packlist -PERL5_PACKLIST+= ${PERL5_SITEARCH}/auto/Irssi/Irc/.packlist -PERL5_PACKLIST+= ${PERL5_SITEARCH}/auto/Irssi/UI/.packlist -PERL5_PACKLIST+= ${PERL5_SITEARCH}/auto/Irssi/TextUI/.packlist +PERL5_PACKLIST= auto/Irssi/.packlist +PERL5_PACKLIST+= auto/Irssi/Irc/.packlist +PERL5_PACKLIST+= auto/Irssi/UI/.packlist +PERL5_PACKLIST+= auto/Irssi/TextUI/.packlist .include "../../lang/perl5/buildlink3.mk" # actually we don't need --with-perl here, irssi is compiled with it by default # but who knows what may happen in future versions |