summaryrefslogtreecommitdiffstats
path: root/autogen.sh
blob: b3a27621e6052cad7c6f69fc3b0797f272d8476b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

run ()
{
    echo "running: $*"
    eval $*

    if test $? != 0 ; then
	echo "error: while running '$*'"
	exit 1
    fi
}

run aclocal-1.8
#run autoheader
run automake-1.8 -a
run autoconf