svn commit: r383886 - head/lang/spidermonkey24/files

Mathieu Arnold mat at FreeBSD.org
Sun Apr 12 21:46:36 UTC 2015


Author: mat
Date: Sun Apr 12 21:46:35 2015
New Revision: 383886
URL: https://svnweb.freebsd.org/changeset/ports/383886

Log:
  Fix with Perl 5.21.1+
  
  Can't use 'defined(@array)' (Maybe you should just omit the defined()?) at ./config/milestone.pl line 59.
  
  With hat:	perl@
  Sponsored by:	Absolight

Added:
  head/lang/spidermonkey24/files/patch-config_milestone.pl   (contents, props changed)

Added: head/lang/spidermonkey24/files/patch-config_milestone.pl
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/spidermonkey24/files/patch-config_milestone.pl	Sun Apr 12 21:46:35 2015	(r383886)
@@ -0,0 +1,11 @@
+--- config/milestone.pl.orig	2013-11-19 19:42:43 UTC
++++ config/milestone.pl
+@@ -56,7 +56,7 @@ $MILESTONE_FILE  = "$TOPSRCDIR/config/mi
+ #
+ my $milestone = Moz::Milestone::getOfficialMilestone($MILESTONE_FILE);
+ 
+-if (defined(@TEMPLATE_FILE)) {
++if (@TEMPLATE_FILE) {
+   my $TFILE;
+ 
+   foreach $TFILE (@TEMPLATE_FILE) {


More information about the svn-ports-all mailing list