summaryrefslogtreecommitdiffstats
path: root/src/util/export-check.pl
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/export-check.pl')
-rwxr-xr-xsrc/util/export-check.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/export-check.pl b/src/util/export-check.pl
index 9ea36488dd..f3706543e8 100755
--- a/src/util/export-check.pl
+++ b/src/util/export-check.pl
@@ -26,11 +26,11 @@ while (<NM>) {
chop;
s/^[0-9a-fA-F]+ +//;
next if /^A /;
- if (!/^[TDRBG] /) {
+ if (!/^[TDRBGS] /) {
unlink $libfile;
die "not sure what to do with '$_'";
}
- s/^[TDRBG] +//;
+ s/^[TDRBGS] +//;
push @found, $_;
}
@found = sort @found;