summaryrefslogtreecommitdiff
path: root/travis/build-default
blob: b43302d9922e40b61f7643ff2507939baaea7cdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
# usage: $0 [optional arguments to configure]

if ! [ -f "./autogen.sh" ]; then
       echo "ERROR: cannot find autogen.sh, run from the top level directory"
       exit 1
fi

set -e

./autogen.sh
./configure "$@"
make