diff options
-rw-r--r-- | perl-install/interactive.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/interactive.pm b/perl-install/interactive.pm index 44fcae50f..227361840 100644 --- a/perl-install/interactive.pm +++ b/perl-install/interactive.pm @@ -130,8 +130,9 @@ sub ask_from_entries_ref($$$$;$%) { if ((ref $_) eq "SCALAR") { { val => $_ } } else { + print "Here", ref $_, "\n"; ($_->{list} && @{$_->{list}}) ? - { %{$_}, type => "list"} : $_; + { %$_, type => "list"} : $_; } } @$val ]; |