]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2010-03-07 Vladimir Serbinenko <phcoder@gmail.com>
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Sun, 7 Mar 2010 22:02:13 +0000 (23:02 +0100)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Sun, 7 Mar 2010 22:02:13 +0000 (23:02 +0100)
* genmoddep.awk: Output all missing symbols and not only first.

ChangeLog
genmoddep.awk

index 56f19acde5333eae87acefb93fbc8710dfa5950a..667ff0c1e190eea8ce1c3fd2c47006d21bb135d6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index 19ac80c71e17c27d1f6c08ebe662811af822fc45..48419a091eeec504bc2a055462552cdeafb628a0 100644 (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) {