diff --git a/configure b/configure index 9b8207ee91555..fe9e7cf7f7ac6 100755 --- a/configure +++ b/configure @@ -1,7 +1,7 @@ #!/bin/sh msg() { - echo "configure: $1" + echo "configure: $*" } step_msg() { @@ -33,8 +33,8 @@ need_ok() { need_cmd() { if command -v $1 >/dev/null 2>&1 - then msg "found program $1" - else err "need program $1" + then msg "found program '$1'" + else err "program '$1' is missing, please install it" fi }