mirror of
https://git.freebsd.org/ports.git
synced 2025-06-24 14:10:30 -04:00
"defined(@array)" and "defined(%hash)" are now fatal errors These have been deprecated since v5.6.1 and have raised deprecation warnings since v5.16. With hat: perl@ Sponsored by: Absolight
11 lines
321 B
Raku
11 lines
321 B
Raku
--- config/milestone.pl.orig 2013-02-11 22:33:22 UTC
|
|
+++ config/milestone.pl
|
|
@@ -55,7 +55,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) {
|