2010-03-07 Vladimir Serbinenko <phcoder@gmail.com>

* genmoddep.awk: Output all missing symbols and not only first.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2010-03-07 23:02:13 +01:00
parent fce5d8ff62
commit 1f15fc1e0a
2 changed files with 5 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2010-03-07 Vladimir Serbinenko <phcoder@gmail.com>
* genmoddep.awk: Output all missing symbols and not only first.
2010-03-06 Vladimir Serbinenko <phcoder@gmail.com> 2010-03-06 Vladimir Serbinenko <phcoder@gmail.com>
* NEWS: Put the date of 1.98 release. * NEWS: Put the date of 1.98 release.

View file

@ -32,13 +32,12 @@ FNR == 1 {
else if ($1 != "__gnu_local_gp") { else if ($1 != "__gnu_local_gp") {
printf "%s in %s is not defined\n", $1, module >"/dev/stderr"; printf "%s in %s is not defined\n", $1, module >"/dev/stderr";
error++; error++;
exit;
} }
} }
# Output the result. # Output the result.
END { END {
if (error == 1) if (error >= 1)
exit 1; exit 1;
for (mod in modtab) { for (mod in modtab) {