Browse Source

Handle macOS systems with glibtoolize in /usr/local/bin.

Not all such systems have it in /opt/local/bin.
pull/8/head
Guy Harris 7 years ago
parent
commit
a9ce2dcd8c
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      autogen.sh

+ 3
- 0
autogen.sh View File

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


Loading…
Cancel
Save