]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* Makerules ($(common-objpfx)Versions.all): Grok new leading column in
authorRoland McGrath <roland@gnu.org>
Thu, 10 Feb 2005 21:24:36 +0000 (21:24 +0000)
committerRoland McGrath <roland@gnu.org>
Thu, 10 Feb 2005 21:24:36 +0000 (21:24 +0000)
soversions.i.

ChangeLog
Makerules

index e5dc1d5003b43890c41ba916d9aa8e6af57033af..e61c8a6ac48baf43af4325ccd0c8b48875b3be00 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2005-02-10  Roland McGrath  <roland@redhat.com>
 
+       * Makerules ($(common-objpfx)Versions.all): Grok new leading column in
+       soversions.i.
+
        * scripts/lib-names.awk: Consider [0-9].* a "number", not just [0-9]+.
        Reported by H.J. Lu <hongjiu.lu@intel.com>.
 
index 5d7b24f31fb4f84a9dd707f7ea75c2ba06235668..1cc6809342c21122e0d4cdd4c1204e495e69c359 100644 (file)
--- a/Makerules
+++ b/Makerules
@@ -1,4 +1,4 @@
-# Copyright (C) 1991-2002, 2003, 2004 Free Software Foundation, Inc.
+# Copyright (C) 1991-2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 # This file is part of the GNU C Library.
 
 # The GNU C Library is free software; you can redistribute it and/or
@@ -338,7 +338,8 @@ $(common-objpfx)Versions.def.v.i: $(..)Versions.def \
 $(common-objpfx)Versions.all: $(..)scripts/firstversions.awk \
                              $(common-objpfx)soversions.i \
                              $(common-objpfx)Versions.def.v
-       { while read lib version setname; do \
+       { while read which lib version setname; do \
+           test x"$$which" = xDEFAULT || continue; \
            test -z "$$setname" || echo "$$lib : $$setname"; \
          done < $(word 2,$^); \
          cat $(word 3,$^); \