From 10702e1ea44e0d5436ef26406862652091e8b2c0 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Mon, 30 Nov 2009 15:16:05 +0000 Subject: Restore call to autoheader in autogen.sh * autogen.sh: call to autoheader was removed during simplification of the autogen.sh script. --- autogen.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh index 02d614a1..c25d9948 100755 --- a/autogen.sh +++ b/autogen.sh @@ -75,8 +75,7 @@ $ACLOCAL $ACLOCAL_FLAGS -I m4 || exit $? echo "* Running autoconf" autoconf || exit $? -# optionally feature autoheader -#(autoheader --version) < /dev/null > /dev/null 2>&1 && autoheader +(autoheader --version) < /dev/null > /dev/null 2>&1 && autoheader echo "* Running libtoolize" libtoolize --copy --force @@ -89,7 +88,9 @@ $AUTOMAKE --add-missing -Wno-portability $am_opt || exit $? cd "$THEDIR" +if [ "$1" != "noconfig" ]; then $srcdir/configure --enable-maintainer-mode "$@" || exit $? +fi echo echo "Now type 'make install' to install $PROJECT." -- cgit