mirror of
https://github.com/transmission/transmission
synced 2024-12-26 01:27:28 +00:00
8 lines
131 B
Bash
Executable file
8 lines
131 B
Bash
Executable file
#!/bin/sh
|
|
|
|
LIBTOOLIZE=libtoolize
|
|
if [ "$(uname)" == "Darwin" ] ; then
|
|
LIBTOOLIZE=glibtoolize
|
|
fi
|
|
|
|
autoreconf -fiv -I config -I m4
|