# New Ticket Created by Alberto Simoes
# Please include the string: [perl #37987]
# in the subject line of all future correspondence about this issue.
# <URL: https://rt.perl.org/rt3/Ticket/Display.html?id=37987 >
Basically, the copy&paste done forgot that the var is not a scalar but
an array.
--
Alberto Simões - Departamento de Informática - Universidade do Minho
Campus de Gualtar - 4710-057 Braga - Portugal
Index: lib/Parrot/Configure/Step/Base.pm
===================================================================
--- lib/Parrot/Configure/Step/Base.pm (revision 10589)
+++ lib/Parrot/Configure/Step/Base.pm (working copy)
@@ -35,7 +35,7 @@
my $class = shift;
{
no strict 'refs';
- ${$class . "::args"}
+ @{$class . "::args"}
}
}