summaryrefslogtreecommitdiff
path: root/lang/perl5.16
diff options
context:
space:
mode:
authorAndrej Zverev <az@FreeBSD.org>2012-10-09 10:33:21 +0000
committerAndrej Zverev <az@FreeBSD.org>2012-10-09 10:33:21 +0000
commit4e7cc2d9b7cdec36ffd5e572d671fcd8cab9bee0 (patch)
treed9f97a6ddf5071e98c71c7e9db2ac115a4e8a588 /lang/perl5.16
parentUpdate to 2.1.5 (diff)
- Fix PERL_VERSION_REGEX to match actual perl version (5.16).
Repoted by: kib@ Reviewed by: tobez@ With Hat: perl@
Notes
Notes: svn path=/head/; revision=305578
Diffstat (limited to 'lang/perl5.16')
-rw-r--r--lang/perl5.16/files/perl-after-upgrade2
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/perl5.16/files/perl-after-upgrade b/lang/perl5.16/files/perl-after-upgrade
index 10aecd3841e3..eeff7c07cf67 100644
--- a/lang/perl5.16/files/perl-after-upgrade
+++ b/lang/perl5.16/files/perl-after-upgrade
@@ -264,7 +264,7 @@ while (@ARGV) {
our $PERL_VERSION = '%%PERL_VERSION%%';
our $PERL_PKGNAME = '%%PKGNAME%%';
-our $PERL_VERSION_REGEX = qr/5\.14\.\d+/;
+our $PERL_VERSION_REGEX = qr/5\.16\.\d+/;
print STDERR "- Fuzzy source re: <$PERL_VERSION_REGEX>\n" if $debug;
our @errors;