From 5c2675eb811bb324b1bafa030323e3e3eef375b0 Mon Sep 17 00:00:00 2001 From: Dan Nicholson Date: Mon, 14 May 2012 14:51:25 -0700 Subject: [PATCH] Don't --enable-maintainer-mode from autogen.sh Maintainer mode was removed some time ago, so setting it from autogen.sh has no effect. --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 23af855..0c36974 100755 --- a/autogen.sh +++ b/autogen.sh @@ -14,7 +14,7 @@ ${AUTORECONF-autoreconf} -iv || exit $? cd $ORIGDIR if [ -z "$NOCONFIGURE" ] && [ "$1" != --no-configure ]; then - "$srcdir"/configure --enable-maintainer-mode "$@" + "$srcdir"/configure "$@" echo echo "Now type 'make' to compile $PROJECT." else