autogen.sh: advice about installing autoconf if autoreconf not found

This commit is contained in:
Andres G. Aragoneses 2014-03-31 17:46:02 +02:00 committed by Stephan Sundermann
parent 07f09dd3da
commit f4181f0223

View file

@ -1,5 +1,8 @@
#!/bin/sh
which autoreconf > /dev/null
if [ $? -ne 0 ] ; then
echo "Please install autoconf" && exit 1;
fi
mkdir -p m4
autoreconf -i --force --warnings=none -I . -I m4
./configure --enable-maintainer-mode $*