summaryrefslogtreecommitdiffstats
path: root/src/util/export-check.pl
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2006-01-26 16:07:41 +0000
committerKen Raeburn <raeburn@mit.edu>2006-01-26 16:07:41 +0000
commit2db2d499dec0d945b1a93e13c98a7a2a4eb2fb3a (patch)
tree774df379a86f421e2f546b8d1167394416235bc6 /src/util/export-check.pl
parent80b28d30e9be7fcf2ca69f1ef48d14cfd40580b5 (diff)
downloadkrb5-2db2d499dec0d945b1a93e13c98a7a2a4eb2fb3a.tar.gz
krb5-2db2d499dec0d945b1a93e13c98a7a2a4eb2fb3a.tar.xz
krb5-2db2d499dec0d945b1a93e13c98a7a2a4eb2fb3a.zip
* export-check.pl: Accept 'S' in nm output
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17618 dc483132-0cff-0310-8789-dd5450dbe970
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;