Language tweak in configure

Fixes #13082
This commit is contained in:
Steve Klabnik 2015-01-22 22:35:28 -05:00
parent b7930d93d9
commit a80807028a
1 changed files with 2 additions and 2 deletions

4
configure vendored
View File

@ -28,8 +28,8 @@ need_ok() {
need_cmd() {
if command -v $1 >/dev/null 2>&1
then msg "found $1"
else err "need $1"
then msg "found program $1"
else err "need program $1"
fi
}