Commit d7b5f2e2 authored by Rafaël Carré's avatar Rafaël Carré

-e option isn't available on all echo

parent f5e4a37c
......@@ -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"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment