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

matching line.
This commit is contained in:
Jakub Jelinek 2005-02-11 15:02:19 +00:00
parent b821229a10
commit 8426ecf6be
2 changed files with 6 additions and 1 deletions

View File

@ -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-11 Roland McGrath <roland@redhat.com>
[BZ #715]

View File

@ -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);