diff options
author | obrien <obrien@FreeBSD.org> | 2004-03-01 23:38:43 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2004-03-01 23:38:43 +0800 |
commit | d3a48c59f9b467d6029629cd9cbca4cb25d22ca7 (patch) | |
tree | d62a22900353679855ece8f4bcc514b2fb2f2b93 /lang/perl5.12 | |
parent | 9e354c854c2228608a1a0962fcb06dc7b0f73d32 (diff) | |
download | freebsd-ports-gnome-d3a48c59f9b467d6029629cd9cbca4cb25d22ca7.tar.gz freebsd-ports-gnome-d3a48c59f9b467d6029629cd9cbca4cb25d22ca7.tar.zst freebsd-ports-gnome-d3a48c59f9b467d6029629cd9cbca4cb25d22ca7.zip |
Fix the perl builds.
Diffstat (limited to 'lang/perl5.12')
-rw-r--r-- | lang/perl5.12/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lang/perl5.12/Makefile b/lang/perl5.12/Makefile index 8f1fcaa30664..90d96bccfaef 100644 --- a/lang/perl5.12/Makefile +++ b/lang/perl5.12/Makefile @@ -24,10 +24,6 @@ PERL_VER= 5.8.2 PERL_ARCH= mach PERL_VERSION= ${PERL_VER} -.if ${OSVERSION} < 502100 -LATEST_LINK= perl5.8 -.endif - HAS_CONFIGURE= yes CONFIGURE_SCRIPT=Configure CONFIGURE_ARGS= -sde -Dprefix=${PREFIX} \ @@ -84,7 +80,9 @@ INCLUDEDIR= /usr/include .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 502100 +.if ${OSVERSION} < 502100 +LATEST_LINK= perl5.8 +.else PKGMESSAGE= ${PKGDIR}/.not-here .endif |