summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorDan Nicholson <dbn.lists@gmail.com>2012-05-14 14:51:25 -0700
committerDan Nicholson <dbn.lists@gmail.com>2012-05-14 14:51:25 -0700
commit5c2675eb811bb324b1bafa030323e3e3eef375b0 (patch)
tree56a6d3a102a700fb1384b731fd9942865979b0f9 /autogen.sh
parentfd4d40b94e8333435933b01b9c62054bdb6cb6ee (diff)
downloadpkg-config-5c2675eb811bb324b1bafa030323e3e3eef375b0.tar.gz
Don't --enable-maintainer-mode from autogen.sh
Maintainer mode was removed some time ago, so setting it from autogen.sh has no effect.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
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