diff options
author | tobez <tobez@FreeBSD.org> | 2003-11-26 02:48:26 +0800 |
---|---|---|
committer | tobez <tobez@FreeBSD.org> | 2003-11-26 02:48:26 +0800 |
commit | 61239fbf0f716352f077d9988236391d9acda1c1 (patch) | |
tree | c96dec2aee2496991e31b5bd986837de845b04c2 /lang/perl5.12 | |
parent | bff33c4e8491c1b7f1d16ad46135dd42a5621116 (diff) | |
download | freebsd-ports-graphics-61239fbf0f716352f077d9988236391d9acda1c1.tar.gz freebsd-ports-graphics-61239fbf0f716352f077d9988236391d9acda1c1.tar.zst freebsd-ports-graphics-61239fbf0f716352f077d9988236391d9acda1c1.zip |
This fixes plist problem for people unlucky enough to have a
${PREFIX}/share/man/man1 directory (which perl's Configure
unconditionally prefers to anything else if found).
Submitted by: se, vanilla
Approved by: portmgr (marcus)
Diffstat (limited to 'lang/perl5.12')
-rw-r--r-- | lang/perl5.12/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lang/perl5.12/Makefile b/lang/perl5.12/Makefile index 7fe07353016..abd33b0bfc3 100644 --- a/lang/perl5.12/Makefile +++ b/lang/perl5.12/Makefile @@ -7,7 +7,7 @@ PORTNAME= perl PORTVERSION= ${PERL_VER} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} \ ${MASTER_SITE_LOCAL:S/$/:local/} \ @@ -30,6 +30,7 @@ CONFIGURE_ARGS= -sde -Dprefix=${PREFIX} \ -Darchlib=${PREFIX}/lib/perl5/${PERL_VER}/${PERL_ARCH} \ -Dprivlib=${PREFIX}/lib/perl5/${PERL_VER} \ -Dman3dir=${PREFIX}/lib/perl5/${PERL_VER}/man/man3 \ + -Dman1dir=${PREFIX}/man/man1 \ -Dsitearch=${SITE_PERL}/${PERL_ARCH} \ -Dsitelib=${SITE_PERL} -Dscriptdir=${PREFIX}/bin \ -Ui_malloc -Ui_iconv -Uinstallusrbinperl \ |