]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* scripts/merge-abilist.awk: More checks for bogus input.
authorRoland McGrath <roland@gnu.org>
Mon, 3 Mar 2003 02:38:36 +0000 (02:38 +0000)
committerRoland McGrath <roland@gnu.org>
Mon, 3 Mar 2003 02:38:36 +0000 (02:38 +0000)
Uniquify duplicate config names.

* scripts/abilist.awk: Don't distinguish weak symbols in normal output.

ChangeLog
scripts/merge-abilist.awk

index 071f0934b4023b337c60665ea9c01160b9c1223d..c76640e05df1a61eaa78fea8ad64e7c0375ca914 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2003-03-02  Roland McGrath  <roland@redhat.com>
 
+       * scripts/merge-abilist.awk: More checks for bogus input.
+       Uniquify duplicate config names.
+
+       * scripts/abilist.awk: Don't distinguish weak symbols in normal output.
+
        * sysdeps/powerpc/powerpc32/dl-machine.c (_dl_reloc_overflow): Renamed
        from dl_reloc_overflow, make global.
        (__process_machine_rela): Update callers.
index 03675f299f137d07511b75554e2799265e26670d..88ca0b08ea00272accb4ae1ed82a280be76608e6 100644 (file)
 #       function F
 #       variable D 0x4
 
+BEGIN { current = "UNSET" }
+
 /^[^| ]/ {
   if (NF < 2 && config == "") {
-    print "BAD LINE:", $0 > "/dev/stderr";
+    print FILENAME ":" FNR ": BAD SET LINE:", $0 > "/dev/stderr";
     exit 2;
   }
 
@@ -44,8 +46,8 @@
 }
 
 /^\| / {
-  if (NF < 3) {
-    print "BAD LINE:", $0 > "/dev/stderr";
+  if (NF < 3 || current == "UNSET") {
+    print FILENAME ":" FNR ": BAD | LINE:", $0 > "/dev/stderr";
     exit 2;
   }
 
 
 {
   if (current == "") next;
+  if (current == "UNSET") {
+    print FILENAME ":" FNR ": IGNORED LINE:", $0 > "/dev/stderr";
+    next;
+  }
 
   ns = split(seen[$0], s, ",");
   nc = split(current, c, ",");
   for (i = 1; i <= nc; ++i) {
+    if (c[i] == "")
+      continue;
     # Sorted insert.
     for (j = 1; j <= ns; ++j) {
+      if (c[i] == s[j])
+        break;
       if (c[i] < s[j]) {
        for (k = ns; k >= j; --k)
          s[k + 1] = s[k];
@@ -75,7 +85,7 @@
        break;
       }
     }
-    if (j >= ns)
+    if (j > ns)
       s[++ns] = c[i];
   }
 
@@ -97,7 +107,9 @@ END {
   ns = split("", s);
   for (configs in stanzas) {
     # Sorted insert.
-    for (j = 1; j <= ns; ++j)
+    for (j = 1; j <= ns; ++j) {
+      if (configs == s[j])
+        break;
       if (configs < s[j]) {
        for (k = ns; k >= j; --k)
          s[k + 1] = s[k];
@@ -105,7 +117,8 @@ END {
        ++ns;
        break;
       }
-    if (j >= ns)
+    }
+    if (j > ns)
       s[++ns] = configs;
   }