From 2db2d499dec0d945b1a93e13c98a7a2a4eb2fb3a Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Thu, 26 Jan 2006 16:07:41 +0000 Subject: * export-check.pl: Accept 'S' in nm output git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17618 dc483132-0cff-0310-8789-dd5450dbe970 --- src/util/export-check.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/util/export-check.pl') 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 () { 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; -- cgit