From: Kieran Colford Date: Fri, 30 May 2014 12:47:43 +0000 (-0400) Subject: valgrind-tests: fixed misleading help message X-Git-Tag: v1.0~7373 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=1c0d9852658e6121cd5462a43c2af1e95b79fbf3;p=gnulib.git 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. Left the auto enablement in and patched the help message like: s/enable/disable/ --- diff --git a/ChangeLog b/ChangeLog index 13ea1a8c5a..6b94234141 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2014-05-30 Kieran Colford + + valgrind-tests: fixed misleading help message + * m4/valgrind-tests.m4: The help message generated by configure + implied that valgrind was disabled by default, which it wasn't. + Adjusted the help message using s/enable/disable/ to clarify. + 2014-05-30 Ulrich Weigand isfinite, isinf, isnan tests: fix for little-endian PowerPC diff --git a/m4/valgrind-tests.m4 b/m4/valgrind-tests.m4 index 5191a5f0ab..fb91d539c3 100644 --- a/m4/valgrind-tests.m4 +++ b/m4/valgrind-tests.m4 @@ -12,8 +12,8 @@ dnl From Simon Josefsson AC_DEFUN([gl_VALGRIND_TESTS], [ AC_ARG_ENABLE(valgrind-tests, - AS_HELP_STRING([--enable-valgrind-tests], - [run self tests under valgrind]), + AS_HELP_STRING([--disable-valgrind-tests], + [don't try to run self tests under valgrind]), [opt_valgrind_tests=$enableval], [opt_valgrind_tests=yes]) # Run self-tests under valgrind?