summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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;