summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 2d08c1616d7f93b78a67fe418e205bc6d82929b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

rm -rf autom4te.cache
rm -f aclocal.m4 ltmain.sh config.cache

autoreconf --force --install || exit 1

if [ -z "$NOCONFIGURE" ]; then
  exec ./configure -C "$@"
fi
exit 0