blob: 1ac94081d67db4c3ea132d390c28dadd9a872687 (
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
autoconf || error "could not re-generate configure"
automake -a -c #--force-missing
rm -rf autom4te.cache
# set +x
|