From 1b0964cc8297425a1b59335bd32c86d7b557e800 Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Fri, 8 Mar 2019 09:42:26 +0100 Subject: [PATCH] lib.sh.in: fix tool checking. --- lib.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib.sh.in b/lib.sh.in index 4799453..c5cc433 100644 --- a/lib.sh.in +++ b/lib.sh.in @@ -31,7 +31,7 @@ check_tools() { # if a different version of something is used than was expected. for tool in $LIBTOOLS $REQTOOLS ; do if ! which "$tool" > /dev/null ; then - die "Required tool $f is not available on this system!" + die "Required tool $tool is not available on this system!" fi done