From fdfdb5d479402062bbf99d009f7ab3e71a68d5a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sun, 12 Nov 2006 13:38:50 +0000 Subject: [PATCH] Remove bashism --- extras/contrib/bootstrap | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/extras/contrib/bootstrap b/extras/contrib/bootstrap index 965b4a921d..90c4b2e78f 100755 --- a/extras/contrib/bootstrap +++ b/extras/contrib/bootstrap @@ -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"