diff options
author | malc <malc@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-17 19:00:18 +0000 |
---|---|---|
committer | malc <malc@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-17 19:00:18 +0000 |
commit | fc9902d9c7793a5b854df126a059cce14ecc29f3 (patch) | |
tree | 4f4bfb30d5d62ce5625ffb15d9d1f760853891f6 /configure | |
parent | 08c119ef8bca55dbe7ca3b581f7af97999342d6a (diff) | |
download | qemu-fc9902d9c7793a5b854df126a059cce14ecc29f3.tar.gz qemu-fc9902d9c7793a5b854df126a059cce14ecc29f3.tar.bz2 qemu-fc9902d9c7793a5b854df126a059cce14ecc29f3.zip |
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
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |