Commit 0c2ccde3 authored by Hisham Muhammad's avatar Hisham Muhammad
Browse files

Detect when libtoolize is called glibtoolize.

It's the case on Darwin, and might be in other BSDs as well.
As referred in #268.
Supersedes PR #269.
parent a859e920
#!/bin/sh
if glibtoolize --version &> /dev/null
then libtoolize=glibtoolize
else libtoolize=libtoolize
fi
aclocal -I m4
autoconf
autoheader
libtoolize --copy --force
$libtoolize --copy --force
automake --add-missing --copy
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment