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

# "autoreconf -f" will clobber our INSTALL file with a generic one if we
# don't move it out of the way

mv -f INSTALL INSTALL.$$.tmp

autoreconf -v -f -i -W all
status=$?

rm -f INSTALL
mv -f INSTALL.$$.tmp INSTALL

rm -rf autom4te.cache

exit $status