Remove bashism

This commit is contained in:
Rémi Denis-Courmont 2006-11-12 13:38:50 +00:00
parent 43a9e778e4
commit fdfdb5d479
1 changed files with 4 additions and 1 deletions

View File

@ -41,7 +41,10 @@ else
fi
rm -f config.mak
echo -e "# Automatically generated by bootstrap.\n# Make changes if you know what you're doing.\n" > config.mak
{
echo "# Automatically generated by bootstrap."
echo "# Make changes if you know what you're doing."
} > config.mak
if test "$HOST" != "$BUILD"; then
CC="${HOST}-gcc"