Skip to content

Commit 1e180b8

Browse files
committed
configure: Clarify error message about missing dependencies
Took me a moment to figure out that the appropriate response to "need program file" was to install the program named "file", not to think "If I didn't need the program file, why would I be compiling things?".
1 parent c3d60ab commit 1e180b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ need_ok() {
3333

3434
need_cmd() {
3535
if command -v $1 >/dev/null 2>&1
36-
then msg "found program $1"
37-
else err "need program $1"
36+
then msg "found program '$1'"
37+
else err "program '$1' is missing, please install it"
3838
fi
3939
}
4040

0 commit comments

Comments
 (0)