diff options
author | tobez <tobez@FreeBSD.org> | 2003-04-24 13:19:21 +0000 |
---|---|---|
committer | tobez <tobez@FreeBSD.org> | 2003-04-24 13:19:21 +0000 |
commit | 50b21eddd2a5ff7b51ee75ce70a96b2a737a4a64 (patch) | |
tree | 4335ab6020aa4f09da01b4da4a1104820d4db901 /lang/perl5.6 | |
parent | 898b60b699c4fb2fc8bebf2f914aecc53607bbce (diff) | |
download | FreeBSD-ports-50b21eddd2a5ff7b51ee75ce70a96b2a737a4a64.zip FreeBSD-ports-50b21eddd2a5ff7b51ee75ce70a96b2a737a4a64.tar.gz |
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>
Diffstat (limited to 'lang/perl5.6')
-rw-r--r-- | lang/perl5.6/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lang/perl5.6/Makefile b/lang/perl5.6/Makefile index 508e014..db3d093 100644 --- a/lang/perl5.6/Makefile +++ b/lang/perl5.6/Makefile @@ -7,7 +7,7 @@ PORTNAME= perl PORTVERSION= ${PERL_VER} -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= lang devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} \ ${MASTER_SITE_LOCAL:S/$/:local/} @@ -31,6 +31,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 -Dccflags=-DAPPLLIB_EXP=\"${BSDPAN_DEST}\" INSTALLS_SHLIB= yes |