summaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorBenjamin Dauvergne <bdauvergne@entrouvert.com>2009-11-30 15:16:05 +0000
committerBenjamin Dauvergne <bdauvergne@entrouvert.com>2009-11-30 15:16:05 +0000
commit10702e1ea44e0d5436ef26406862652091e8b2c0 (patch)
tree3d8c0705e0ee02acb3087806bf9b0ed298de3ad9 /autogen.sh
parent2ed0af41c29cd53eea954f2910d8fd363675b90a (diff)
downloadlasso-10702e1ea44e0d5436ef26406862652091e8b2c0.tar.gz
lasso-10702e1ea44e0d5436ef26406862652091e8b2c0.tar.xz
lasso-10702e1ea44e0d5436ef26406862652091e8b2c0.zip
Restore call to autoheader in autogen.sh
* autogen.sh: call to autoheader was removed during simplification of the autogen.sh script.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh5
1 files changed, 3 insertions, 2 deletions
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."