Commit fc9902d9c7793a5b854df126a059cce14ecc29f3
1 parent
08c119ef
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
Showing
1 changed file
with
1 additions
and
1 deletions
configure
... | ... | @@ -1094,7 +1094,7 @@ config_h="config-host.h" |
1094 | 1094 | test -f $config_h && mv $config_h ${config_h}~ |
1095 | 1095 | |
1096 | 1096 | echo "# Automatically generated by configure - do not modify" > $config_mak |
1097 | -echo -n "# Configured with:" >> $config_mak | |
1097 | +printf "# Configured with:" >> $config_mak | |
1098 | 1098 | printf " '%s'" "$0" "$@" >> $config_mak |
1099 | 1099 | echo >> $config_mak |
1100 | 1100 | echo "/* Automatically generated by configure - do not modify */" > $config_h | ... | ... |