diff options
Diffstat (limited to 'scripts')
-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); |