blob: c810ea52d8a743df51b9e080a0dbd1ff1959145b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#! /bin/sh
error() {
echo "$1"
exit 1
}
# set -x
rm -rf autom4te.cache
autoheader || error "could not re-generate config/openaxiom-c-macros.h"
aclocal -I config
automake -a -c #--force-missing
autoconf || error "could not re-generate configure"
rm -rf autom4te.cache
# set +x
|