The help message generated by a configure script using this module implied that valgrind was disabled by default, which it wasn't. Patched so that valgrind is in fact disabled in accordance with the documentation. --- ChangeLog | 8 ++++++++ m4/valgrind-tests.m4 | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog index d76591a..25bfed0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2014-05-28 Kieran Colford <colfo...@gmail.com> + + valgrind-tests: fixed misleading help message. + The help message generated by a configure script using this module + implied that valgrind was disabled by default, which it wasn't. + Patched so that valgrind is in fact disabled in accordance with the + documentation. + 2014-05-27 Sylvain Beucler <b...@beuc.net>. gnulib-tool: wget translations using --no-verbose rather than --quiet diff --git a/m4/valgrind-tests.m4 b/m4/valgrind-tests.m4 index 5191a5f..29b77aa 100644 --- a/m4/valgrind-tests.m4 +++ b/m4/valgrind-tests.m4 @@ -13,8 +13,8 @@ AC_DEFUN([gl_VALGRIND_TESTS], [ AC_ARG_ENABLE(valgrind-tests, AS_HELP_STRING([--enable-valgrind-tests], - [run self tests under valgrind]), - [opt_valgrind_tests=$enableval], [opt_valgrind_tests=yes]) + [run self tests under valgrind (default: disabled)]), + [opt_valgrind_tests=$enableval], [opt_valgrind_tests=no]) # Run self-tests under valgrind? if test "$opt_valgrind_tests" = "yes" && test "$cross_compiling" = no; then -- 1.7.9.5