mirror of
https://github.com/transmission/transmission.git
synced 2025-12-24 20:35:36 +00:00
11 lines
183 B
Bash
Executable File
11 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
|