diff options
author | Anton Berezin <tobez@FreeBSD.org> | 2003-11-25 18:48:26 +0000 |
---|---|---|
committer | Anton Berezin <tobez@FreeBSD.org> | 2003-11-25 18:48:26 +0000 |
commit | 6ea9d57347b5988a6958d2e92b0d8680315f91e5 (patch) | |
tree | 6fb3cfdd3bbcae0f51fdbc03062bbdb5dec47022 /lang/perl5.12/Makefile | |
parent | Force downgrade back to 2.38. We are in ports-freeze... (diff) |
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)
Notes
Notes:
svn path=/head/; revision=94783
Diffstat (limited to 'lang/perl5.12/Makefile')
-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 7fe073530167..abd33b0bfc35 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 \ |