lib.sh.in: fix tool checking.

This commit is contained in:
Enno Boland 2019-03-08 09:42:26 +01:00
parent 92bb9df1d3
commit 1b0964cc82
1 changed files with 1 additions and 1 deletions

View File

@ -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