Skip to content

Commit

Permalink
* scripts/soversions.awk: Only record first WORDSIZE{32,64}
Browse files Browse the repository at this point in the history
	matching line.
  • Loading branch information
Roland McGrath committed Feb 15, 2005
1 parent 7de0012 commit 3220ccb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2005-02-11 Jakub Jelinek <jakub@redhat.com>

* scripts/soversions.awk: Only record first WORDSIZE{32,64}
matching line.

2005-02-14 Alan Modra <amodra@bigpond.net.au>

* sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela): Define
Expand Down
2 changes: 1 addition & 1 deletion scripts/soversions.awk
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ BEGIN {
{ thiscf = $1 }

$2 ~ /WORDSIZE[3264]/ {
if (config ~ thiscf) {
if ((config ~ thiscf) && !othercf) {
othercf = $3;
sub(/@CPU@/, cpu, othercf);
sub(/@VENDOR@/, vendor, othercf);
Expand Down

0 comments on commit 3220ccb

Please sign in to comment.