changeset 17685:15fb9001e2b3

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/
author Kieran Colford <colfordk@gmail.com>
date Fri, 30 May 2014 08:47:43 -0400
parents 3f834754d62a
children f147236e9fda
files ChangeLog m4/valgrind-tests.m4
diffstat 2 files changed, 9 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2014-05-30  Kieran Colford  <colfordk@gmail.com>
+
+	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  <uweigand@de.ibm.com>
 
 	isfinite, isinf, isnan tests: fix for little-endian PowerPC
--- a/m4/valgrind-tests.m4
+++ b/m4/valgrind-tests.m4
@@ -12,8 +12,8 @@
 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?