Re: [PATCH] h2xs and extra_libraries
Tassilo von Parseval [Tue, 15 Jul 2003 07:28:52 +0000 (09:28 +0200)]
Message-id: <20030715052852.GA494@ethan>

p4raw-id: //depot/perl@20176

utils/h2xs.PL

index ffc343e..6e1f297 100644 (file)
@@ -594,6 +594,7 @@ my ($opt_A,
    );
 
 Getopt::Long::Configure('bundling');
+Getopt::Long::Configure('pass_through');
 
 my %options = (
                 'omit-autoload|A'    => \$opt_A,
@@ -707,9 +708,10 @@ my @path_h;
 
 while (my $arg = shift) {
     if ($arg =~ /^-l/i) {
-        $extralibs = "$arg @ARGV";
-        last;
+        $extralibs .= "$arg ";
+        next;
     }
+    last if $extralibs;
     push(@path_h, $arg);
 }