[autogen.sh:] Clarify libtoolize/glibtoolize existence check error message.

Explicitly mention the latter variant of the tool inside said error message.
This commit is contained in:
Bryce Glover 2017-03-09 15:32:17 -05:00
parent e08ed04412
commit bcba09c85d

View File

@ -55,7 +55,7 @@ if command -v libtoolize >/dev/null 2>&1; then
elif command -v glibtoolize >/dev/null 2>&1; then
LIBTOOLIZE="$(command -v glibtoolize)"
else
echo "Unable to find a valid copy of libtoolize in your PATH!"
echo "Unable to find a valid copy of libtoolize or glibtoolize in your PATH!"
bail_out
fi