summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2006-01-26 03:07:12 +0000
committerKen Raeburn <raeburn@mit.edu>2006-01-26 03:07:12 +0000
commit80b28d30e9be7fcf2ca69f1ef48d14cfd40580b5 (patch)
tree048ecefe6360afd928b01bebafbf3b1115c36c10 /src/util
parentde2ccfb88bc93eb27a819d8914773b053ab2580d (diff)
downloadkrb5-80b28d30e9be7fcf2ca69f1ef48d14cfd40580b5.tar.gz
krb5-80b28d30e9be7fcf2ca69f1ef48d14cfd40580b5.tar.xz
krb5-80b28d30e9be7fcf2ca69f1ef48d14cfd40580b5.zip
* export-check.pl: Accept 'G' in nm output
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17617 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/util')
-rw-r--r--src/util/ChangeLog2
-rwxr-xr-xsrc/util/export-check.pl4
2 files changed, 4 insertions, 2 deletions
diff --git a/src/util/ChangeLog b/src/util/ChangeLog
index b7c87caa5..429e91105 100644
--- a/src/util/ChangeLog
+++ b/src/util/ChangeLog
@@ -2,6 +2,8 @@
* export-check.pl: New file.
+ * export-check.pl: Accept 'G' in nm output.
+
2005-12-22 Ken Raeburn <raeburn@mit.edu>
* depfix.pl (uniquify): New subroutine.
diff --git a/src/util/export-check.pl b/src/util/export-check.pl
index 67c8e853d..9ea36488d 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 (!/^[TDRB] /) {
+ if (!/^[TDRBG] /) {
unlink $libfile;
die "not sure what to do with '$_'";
}
- s/^[TDRB] +//;
+ s/^[TDRBG] +//;
push @found, $_;
}
@found = sort @found;