summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Porting/findrfuncs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Porting/findrfuncs b/Porting/findrfuncs
index 520f158381..c9a7ff80a7 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"}++) {