mirror of
https://github.com/transmission/transmission
synced 2024-12-23 16:24:02 +00:00
10 lines
183 B
Bash
Executable file
10 lines
183 B
Bash
Executable file
#!/bin/sh
|
|
|
|
LIBTOOLIZE=libtoolize
|
|
if ! libtoolize --help >/dev/null 2>&1 && glibtoolize --help >/dev/null 2>&1
|
|
then
|
|
LIBTOOLIZE=glibtoolize
|
|
fi
|
|
export LIBTOOLIZE
|
|
|
|
autoreconf -fi -I m4
|