diff options
author | skv <skv@FreeBSD.org> | 2009-03-06 01:56:24 +0800 |
---|---|---|
committer | skv <skv@FreeBSD.org> | 2009-03-06 01:56:24 +0800 |
commit | b44530ebea8d6c4cde958325b275fe981da49ba2 (patch) | |
tree | 144c10ed2126c4d45830e8d09de266bb349bc062 /Mk/bsd.perl.mk | |
parent | 03ae95f45aad0948c86c826f1baa6a6655b32819 (diff) | |
download | freebsd-ports-gnome-b44530ebea8d6c4cde958325b275fe981da49ba2.tar.gz freebsd-ports-gnome-b44530ebea8d6c4cde958325b275fe981da49ba2.tar.zst freebsd-ports-gnome-b44530ebea8d6c4cde958325b275fe981da49ba2.zip |
Remove variable PERL_VER from the ports tree at all - because
it is obsolete since Perl 5.6.0.
Diffstat (limited to 'Mk/bsd.perl.mk')
-rw-r--r-- | Mk/bsd.perl.mk | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Mk/bsd.perl.mk b/Mk/bsd.perl.mk index ce142278ad34..2897951d8fe6 100644 --- a/Mk/bsd.perl.mk +++ b/Mk/bsd.perl.mk @@ -17,7 +17,6 @@ # installed from a port, but without the version number. # Use this if you need to replace "#!" lines in scripts. # PERL_VERSION - Full version of perl5 (see below for current value). -# PERL_VER - Short version of perl5 (see below for current value). # PERL_LEVEL - Perl version as an integer of the form MNNNPP, where # M is major version, N is minor version, and P is # the patch level. E.g., PERL_VERSION=5.6.1 would give @@ -86,7 +85,6 @@ PERL_Include_MAINTAINER= perl@FreeBSD.org .if defined(_PERL_REFACTORING_COMPLETE) PERL_VERSION?= 5.8.9 -PERL_VER?= 5.8.9 .if !defined(PERL_LEVEL) && defined(PERL_VERSION) perl_major= ${PERL_VERSION:C|\..*||} @@ -107,7 +105,7 @@ PERL_PORT?= perl5.8 PERL_PORT?= perl5.6 .endif -SITE_PERL_REL?= lib/perl5/site_perl/${PERL_VER} +SITE_PERL_REL?= lib/perl5/site_perl/${PERL_VERSION} SITE_PERL?= ${LOCALBASE}/${SITE_PERL_REL} PERL5= ${LOCALBASE}/bin/perl${PERL_VERSION} @@ -178,7 +176,7 @@ Perl_Post_Include= bsd.perl.mk .if defined(_PERL_REFACTORING_COMPLETE) PLIST_SUB+= PERL_VERSION=${PERL_VERSION} \ - PERL_VER=${PERL_VER} \ + PERL_VER=${PERL_VERSION} \ PERL_ARCH=${PERL_ARCH} \ SITE_PERL=${SITE_PERL_REL} |