mirror of
https://github.com/gcc-mirror/gcc.git
synced 2024-11-21 13:40:47 +00:00
mk-sik-inc.sh: Use a temporary string instead of 'echo -n'.
* mk-sik-inc.sh: Use a temporary string instead of 'echo -n'. * mk-srk-inc.sh: Likewise. From-SVN: r86919
This commit is contained in:
parent
156a126c4f
commit
130abd1728
@ -1,3 +1,8 @@
|
|||||||
|
2004-09-01 Eric Botcazou <ebotcazou@libertysurf.fr>
|
||||||
|
|
||||||
|
* mk-sik-inc.sh: Use a temporary string instead of 'echo -n'.
|
||||||
|
* mk-srk-inc.sh: Likewise.
|
||||||
|
|
||||||
2004-09-01 Paul Brook <paul@codesourcery.com>
|
2004-09-01 Paul Brook <paul@codesourcery.com>
|
||||||
|
|
||||||
* runtime/error.c (generate_error): Set both iostat and
|
* runtime/error.c (generate_error): Set both iostat and
|
||||||
|
@ -20,12 +20,13 @@ echo " type (int_info), parameter :: int_infos(c) = (/ &"
|
|||||||
|
|
||||||
i=0
|
i=0
|
||||||
for k in $kinds; do
|
for k in $kinds; do
|
||||||
echo -n " int_info ($k, range(0_$k))"
|
# echo -n is not portable
|
||||||
|
str=" int_info ($k, range(0_$k))"
|
||||||
i=`expr $i + 1`
|
i=`expr $i + 1`
|
||||||
if [ $i -lt $c ]; then
|
if [ $i -lt $c ]; then
|
||||||
echo ", &"
|
echo "$str, &"
|
||||||
else
|
else
|
||||||
echo " /)"
|
echo "$str /)"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
@ -20,12 +20,13 @@ echo " type (real_info), parameter :: real_infos(c) = (/ &"
|
|||||||
|
|
||||||
i=0
|
i=0
|
||||||
for k in $kinds; do
|
for k in $kinds; do
|
||||||
echo -n " real_info ($k, precision(0.0_$k), range(0.0_$k))"
|
# echo -n is not portable
|
||||||
|
str=" real_info ($k, precision(0.0_$k), range(0.0_$k))"
|
||||||
i=`expr $i + 1`
|
i=`expr $i + 1`
|
||||||
if [ $i -lt $c ]; then
|
if [ $i -lt $c ]; then
|
||||||
echo ", &"
|
echo "$str, &"
|
||||||
else
|
else
|
||||||
echo " /)"
|
echo "$str /)"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user