From: Ulrich Drepper Date: Wed, 9 Apr 2008 05:39:54 +0000 (+0000) Subject: [BZ #6024] X-Git-Tag: cvs/fedora-glibc-20080410T1907~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c2a684a419ce936d7443bcb1e71ea7725fee0507;p=platform%2Fupstream%2Fglibc.git [BZ #6024] * scripts/abi-versions.awk: If the version specified by --enable-oldest-abi is older than the first version for this architecture, use the default version. --- diff --git a/ChangeLog b/ChangeLog index dc69606..b9a0b74 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2008-04-08 Ulrich Drepper + [BZ #6024] + * scripts/abi-versions.awk: If the version specified by + --enable-oldest-abi is older than the first version for this + architecture, use the default version. + * locale/programs/ld-collate.c (collate_read): Ignore script lines as well when ignoring the whole category. diff --git a/scripts/abi-versions.awk b/scripts/abi-versions.awk index ab98d78..06fa148 100644 --- a/scripts/abi-versions.awk +++ b/scripts/abi-versions.awk @@ -30,6 +30,9 @@ $2 == "=" { printf "#define ABI_%s_%s\tABI_%s_%s\n", libid, oldid, libid, newid; printf "#define VERSION_%s_%s\t%s\n", libid, oldid, new; + + if ("GLIBC_" oldest_abi == old) + oldest_abi = "default"; next; }