diff options
author | Roland McGrath <roland@gnu.org> | 2005-02-10 21:24:36 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2005-02-10 21:24:36 +0000 |
commit | 9d0547ce8eb932b3c8a75618c3bff2b7ef5c6d06 (patch) | |
tree | 42710209c2a6b7389eb981579002e773a3a54284 /Makerules | |
parent | a078a7eecdcfdbc73280f5ed71a660b7c7b0d392 (diff) |
* Makerules ($(common-objpfx)Versions.all): Grok new leading column in
soversions.i.
Diffstat (limited to 'Makerules')
-rw-r--r-- | Makerules | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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,$^); \ |