Rollup merge of #21540 - steveklabnik:gh13082, r=brson

Fixes #13082

r? @brson
This commit is contained in:
Flavio Percoco Premoli 2015-01-24 10:42:41 +01:00
commit 60c9e12fb7

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
}