Skip to content

Commit

Permalink
[BZ #6024]
Browse files Browse the repository at this point in the history
	* 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.
  • Loading branch information
Ulrich Drepper committed Apr 9, 2008
1 parent 7b61ef2 commit c2a684a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
2008-04-08 Ulrich Drepper <drepper@redhat.com>

[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.

Expand Down
3 changes: 3 additions & 0 deletions scripts/abi-versions.awk
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit c2a684a

Please sign in to comment.