* make_sunver.pl: Remove extra whitespace in regexp.

From-SVN: r161973
This commit is contained in:
Eric Botcazou 2010-07-08 19:15:21 +00:00 committed by Eric Botcazou
parent 2784ed9c44
commit 5653ef60cb
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2010-07-08 Eric Botcazou <ebotcazou@adacore.com>
* make_sunver.pl: Remove extra whitespace in regexp.
2010-07-02 Sebastian Pop <sebastian.pop@amd.com>
* check_GNU_style.sh: New.

View File

@ -60,7 +60,7 @@ while (<NM>) {
next if (/:$/);
# Ignore register (SPARC only), undefined and local symbols. The
# symbol name is optional; Sun nm emits none for local or .bss symbols.
next if (/^([^ ]+)?[ \t]+[RUa-z][ \t]+ /);
next if (/^([^ ]+)?[ \t]+[RUa-z][ \t]+/);
# Ignore objects without symbol table. Message goes to stdout with Sun
# nm, while GNU nm emits the corresponding message to stderr.
next if (/.* - No symbol table data/);