* testsuite/config-guess.sh: Reduce recurring tabs into a single

tab, to allow the test data to be better aligned in columns.
This commit is contained in:
Ben Elliston 2004-10-25 12:23:47 +00:00
parent 0ed13fdc92
commit 253d9f2c29
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2004-10-25 Ben Elliston <bje@gnu.org>
* testsuite/config-guess.sh: Reduce recurring tabs into a single
tab, to allow the test data to be better aligned in columns.
2004-10-25 Ben Elliston <bje@gnu.org>
Reported by Monty Solomon <monty@roscom.com>:

View File

@ -11,7 +11,8 @@ rc=0
export PATH=`pwd`:$PATH
IFS=" " # tab
while read machine release system version triplet ; do
sed 's/ */ /g' < config-guess.data |
while read machine release system version triplet ; do
sed \
-e "s/@MACHINE@/$machine/" \
-e "s/@RELEASE@/$release/" \
@ -30,7 +31,7 @@ while read machine release system version triplet ; do
continue
fi
$verbose && echo "PASS: $triplet"
done < config-guess.data
done
if test $rc -eq 0 ; then
$verbose || echo "PASS: config.guess checks"