aboutsummaryrefslogtreecommitdiff
path: root/build-setup.sh
blob: 547f786e0b7d60483e0f2f6a98ca514f01df9864 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/sh

error() {
    echo "$1"
    exit 1
}

# set -x

rm -rf autom4te.cache
autoheader || error "could not re-generate config/openaxiom-c-macros.h"
autoconf || error "could not re-generate configure"

# set +x