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>
* NEWS: Put the date of 1.98 release.

View File

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