Browse Source

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

Not all such systems have it in /opt/local/bin.
keep-around/d63ce04a93711820d9a6985b1d11d8d91ed8e6b6
Guy Harris 7 years ago
committed by Johan Pascal
parent
commit
f8ca5b8a50
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