diff options
author | Anton Berezin <tobez@FreeBSD.org> | 2003-04-24 13:19:21 +0000 |
---|---|---|
committer | Anton Berezin <tobez@FreeBSD.org> | 2003-04-24 13:19:21 +0000 |
commit | 8d6ace0a7b5cbc5fcc355ea759b96b02df50d31c (patch) | |
tree | 7dc6157c00ddd52ced5c8d3c441a2172fd6f60c7 /lang/perl5.16 | |
parent | Upgrade to 1.6. (diff) |
Under certain conditions, perl's configure script could pick a directory
other than ${LOCALBASE}/bin to install its scripts (h2ph, perldoc, and
friends) to. Fix that.
PR: 51350
Reported by: Oliver Brandmueller <ob@gruft.de>
Notes
Notes:
svn path=/head/; revision=79585
Diffstat (limited to 'lang/perl5.16')
-rw-r--r-- | lang/perl5.16/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lang/perl5.16/Makefile b/lang/perl5.16/Makefile index e8a1518f6433..9ee03225bc8d 100644 --- a/lang/perl5.16/Makefile +++ b/lang/perl5.16/Makefile @@ -7,7 +7,7 @@ PORTNAME= perl PORTVERSION= ${PERL_VER} -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= lang devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} \ ${MASTER_SITE_LOCAL:S/$/:local/} \ @@ -32,6 +32,7 @@ CONFIGURE_ARGS= -sde -Dprefix=${PREFIX} \ -Dman3dir=${PREFIX}/lib/perl5/${PERL_VER}/man/man3 \ -Dsitearch=${PREFIX}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH} \ -Dsitelib=${PREFIX}/lib/perl5/site_perl/${PERL_VER} \ + -Dscriptdir=${PREFIX}/bin \ -Ui_malloc -Ui_iconv -Uinstallusrbinperl \ -Dccflags=-DAPPLLIB_EXP=\"${BSDPAN_DEST}\" # INSTALLS_SHLIB= yes |