From bcba09c85d7fa68c216ec50fb87da3166ded285d Mon Sep 17 00:00:00 2001 From: Bryce Glover Date: Thu, 9 Mar 2017 15:32:17 -0500 Subject: [PATCH] [`autogen.sh`:] Clarify `libtoolize`/`glibtoolize` existence check error message. Explicitly mention the latter variant of the tool inside said error message. --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index db100872..897a3835 100755 --- a/autogen.sh +++ b/autogen.sh @@ -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