Don't --enable-maintainer-mode from autogen.sh

Maintainer mode was removed some time ago, so setting it from autogen.sh
has no effect.
This commit is contained in:
Dan Nicholson 2012-05-14 14:51:25 -07:00
parent fd4d40b94e
commit 5c2675eb81

View file

@ -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