From: Jarkko Hietaniemi Date: Thu, 6 Mar 2003 10:11:22 +0000 (+0000) Subject: Thinko fix. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d05aa1354dc4f1f485ab0c45b05688c3494e1aa6;p=p5sagit%2Fp5-mst-13.2.git Thinko fix. p4raw-id: //depot/perl@18838 --- diff --git a/Porting/findrfuncs b/Porting/findrfuncs index 520f158..c9a7ff8 100644 --- a/Porting/findrfuncs +++ b/Porting/findrfuncs @@ -114,7 +114,7 @@ for my $exe (@EXES) { $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/\@.*\z//; # remove @@GLIBC_2.0 etc # warn "#### $sym\n"; if (exists $rfuncs{"${sym}_r"} && ! $syms{"$sym:$exe"}++) {