summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 3e7444bc30289411b2a8d9b4749f9ad3d889a8ec (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 --symlink --install || exit 1

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