Simplify autogen.sh

This commit is contained in:
Kim Woelders 2018-08-12 15:38:43 +02:00
parent cc17380f93
commit 355b3a6672
1 changed files with 6 additions and 7 deletions

View File

@ -1,11 +1,10 @@
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
echo " aclocal $ACLOCAL_FLAGS"
aclocal $ACLOCAL_FLAGS
echo " automake --add-missing"
automake --add-missing
echo " autoconf"
autoconf
rm -rf autom4te.cache aclocal.m4
./configure "$@"
autoreconf -vif
if [ -z "$NOCONFIGURE" ]; then
./configure "$@"
fi