Change 18838 by [EMAIL PROTECTED] on 2003/03/06 10:11:22
Thinko fix.
Affected files ...
... //depot/perl/Porting/findrfuncs#10 edit
Differences ...
==== //depot/perl/Porting/findrfuncs#10 (text) ====
Index: perl/Porting/findrfuncs
--- perl/Porting/findrfuncs#9~17249~ Fri Jun 14 16:14:44 2002
+++ perl/Porting/findrfuncs Thu Mar 6 02:11:22 2003
@@ -114,7 +114,7 @@
$sym =~ s/^\s+//;
$sym =~ s/^([0-9A-Fa-f]+\s+)?[Uu]\s+//;
$sym =~ s/\s+[Uu]\s+-$//;
- next if /\s/;
+ next if $sym =~ /\s/;
$sym =~ s/[EMAIL PROTECTED]//; # remove @@GLIBC_2.0 etc
# warn "#### $sym\n";
if (exists $rfuncs{"${sym}_r"} && ! $syms{"$sym:$exe"}++) {
End of Patch.