fix change#1861, which breaks default boot_xxx symbol generation
Gurusamy Sarathy [Fri, 25 Sep 1998 00:13:36 +0000 (00:13 +0000)]
p4raw-link: @1861 on //depot/perl: 762efda7da89e66e6132e666545886910dd743f8

p4raw-id: //depot/perl@1878

lib/ExtUtils/Mksymlists.pm

index bad353e..1e06463 100644 (file)
@@ -19,10 +19,10 @@ sub Mksymlists {
 
     $spec{DL_VARS} = [] unless $spec{DL_VARS};
     ($spec{FILE} = $spec{NAME}) =~ s/.*::// unless $spec{FILE};
+    $spec{FUNCLIST} = [] unless $spec{FUNCLIST};
     $spec{DL_FUNCS} = { $spec{NAME} => [] }
         unless ( ($spec{DL_FUNCS} and keys %{$spec{DL_FUNCS}}) or
-                 $spec{FUNCLIST});
-    $spec{FUNCLIST} = [] unless $spec{FUNCLIST};
+                 @{$spec{FUNCLIST}});
     if (defined $spec{DL_FUNCS}) {
         my($package);
         foreach $package (keys %{$spec{DL_FUNCS}}) {