summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2012-06-25 11:55:22 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2012-06-25 11:55:22 +0100
commite1427a2d662ca18cff5beb2dddd8490891d02a9f (patch)
tree1c8646f141fc3ace86959b66a91454311480b868 /autogen.sh
parent3624e65986453d90ff571bdb738b4370f621cf88 (diff)
downloaddbus-e1427a2d662ca18cff5beb2dddd8490891d02a9f.tar.gz
Set configure defaults from --enable-developer, not Automake maintainer mode
Automake maintainer mode isn't about whether you're a maintainer or not (although its name would suggest that), it's about whether files that are normally distributed in the tarball get regenerated. As such, it's not really appropriate to use it to drive defaults for things like assertions and extra test code. The desired effect is that developers building from git normally get tests and assertions, while distribution packagers don't. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=34671 Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk> Reviewed-by: Colin Walters <walters@verbum.org>
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 d139fa47..f66e7781 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -101,7 +101,7 @@ else
fi
if $run_configure; then
- $srcdir/configure --enable-maintainer-mode --config-cache "$@"
+ $srcdir/configure --enable-maintainer-mode --enable-developer --config-cache "$@"
echo
echo "Now type 'make' to compile $PROJECT."
else