changeset 28832:d7c2f6dc4c11

cleaned up the output of the command being run in run_or_die
author Gary Kramlich <grim@reaperworld.com>
date Wed, 28 Oct 2009 00:19:07 +0000
parents 889f74073af6
children 9c6495646694
files autogen.sh
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/autogen.sh	Wed Oct 28 00:17:47 2009 +0000
+++ b/autogen.sh	Wed Oct 28 00:19:07 2009 +0000
@@ -83,7 +83,7 @@
 
 	OUTPUT=`mktemp autogen-XXXXXX`
 
-	printf "%s" "running ${CMD} ${@}... "
+	printf "running %s %s..." ${CMD} ${@}
 	${CMD} ${@} >${OUTPUT} 2>&1
 
 	if [ $? != 0 ] ; then