2010-03-07 Vladimir Serbinenko <phcoder@gmail.com>
* genmoddep.awk: Output all missing symbols and not only first.
This commit is contained in:
parent
fce5d8ff62
commit
1f15fc1e0a
2 changed files with 5 additions and 2 deletions
|
@ -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.
|
||||||
|
|
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue