mirror of
https://github.com/transmission/transmission
synced 2024-12-23 08:13:27 +00:00
Fix autogen.sh on osx (and maybe elsewhere too).
This commit is contained in:
parent
235b89b658
commit
2fcce9ca70
1 changed files with 3 additions and 1 deletions
|
@ -1,8 +1,10 @@
|
|||
#!/bin/sh
|
||||
|
||||
LIBTOOLIZE=libtoolize
|
||||
if [ "$(uname)" == "Darwin" ] ; then
|
||||
if ! libtoolize --help >/dev/null 2>&1 && glibtoolize --help >/dev/null 2>&1
|
||||
then
|
||||
LIBTOOLIZE=glibtoolize
|
||||
fi
|
||||
export LIBTOOLIZE
|
||||
|
||||
autoreconf -fiv -I config -I m4
|
||||
|
|
Loading…
Reference in a new issue