From fc9902d9c7793a5b854df126a059cce14ecc29f3 Mon Sep 17 00:00:00 2001 From: malc Date: Wed, 17 Dec 2008 19:00:18 +0000 Subject: [PATCH] Do not rely on BSD style echo (which accepts -n option) http://www.opengroup.org/onlinepubs/7990989775/xcu/echo.html git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6072 c046a42c-6fe2-441c-8c8c-71466251a162 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 4f8bc5e5bc..ec4b229f50 100755 --- a/configure +++ b/configure @@ -1094,7 +1094,7 @@ config_h="config-host.h" test -f $config_h && mv $config_h ${config_h}~ echo "# Automatically generated by configure - do not modify" > $config_mak -echo -n "# Configured with:" >> $config_mak +printf "# Configured with:" >> $config_mak printf " '%s'" "$0" "$@" >> $config_mak echo >> $config_mak echo "/* Automatically generated by configure - do not modify */" > $config_h -- 2.11.4.GIT