Parcourir la source

lib.sh.in: fix tool checking.

Enno Boland il y a 6 ans
Parent
commit
1b0964cc82
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      lib.sh.in

+ 1 - 1
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