diff options
author | Roland McGrath <roland@gnu.org> | 2005-02-15 00:05:57 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2005-02-15 00:05:57 +0000 |
commit | 3220ccb6874105079403ffc7335bb58cb3cbab91 (patch) | |
tree | d9aa1fd095c62fafe6646fc407eb17f23b727a8f /scripts/soversions.awk | |
parent | 7de00121723507e61df94dfbb6a4c5a9fbba7146 (diff) | |
download | glibc-3220ccb6874105079403ffc7335bb58cb3cbab91.zip glibc-3220ccb6874105079403ffc7335bb58cb3cbab91.tar.gz glibc-3220ccb6874105079403ffc7335bb58cb3cbab91.tar.bz2 |
* scripts/soversions.awk: Only record first WORDSIZE{32,64}
matching line.
Diffstat (limited to 'scripts/soversions.awk')
-rw-r--r-- | scripts/soversions.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/soversions.awk b/scripts/soversions.awk index eab2e17..32ce076 100644 --- a/scripts/soversions.awk +++ b/scripts/soversions.awk @@ -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); |