From f8ca5b8a5004789a670236a2a3f5ef13477bddab Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Mon, 18 Mar 2019 10:22:40 -0700 Subject: [PATCH] Handle macOS systems with glibtoolize in /usr/local/bin. Not all such systems have it in /opt/local/bin. --- autogen.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/autogen.sh b/autogen.sh index db84113..9d1e7cf 100755 --- a/autogen.sh +++ b/autogen.sh @@ -18,6 +18,9 @@ fi if test -f /opt/local/bin/glibtoolize ; then # darwin LIBTOOLIZE=/opt/local/bin/glibtoolize +elif test -f /usr/local/bin/glibtoolize ; then + # also darwin + LIBTOOLIZE=/usr/local/bin/glibtoolize else LIBTOOLIZE=libtoolize fi