summaryrefslogtreecommitdiffstats
path: root/.github/travis/build.sh
blob: cbd4e45bab36de97a338997b7d43068a23aed839 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

sh autogen.sh || exit 1
if [ "$BUILD" = "static" ]; then
	./configure --enable-static || exit 1
else
	./configure || exit 1
fi
exec make