mirror of
https://github.com/strophe/libstrophe.git
synced 2026-07-18 11:56:22 +00:00
11 lines
177 B
Bash
Executable File
11 lines
177 B
Bash
Executable File
#!/bin/sh
|
|
|
|
ACFLAGS=""
|
|
if [ -d /usr/local/share/aclocal ]; then
|
|
ACFLAGS="-I /usr/local/share/aclocal"
|
|
fi
|
|
|
|
aclocal ${ACFLAGS}
|
|
automake --add-missing --foreign --copy
|
|
autoconf
|