bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] valgrind-tests: fixed misleading help message.


From: Kieran Colford
Subject: [PATCH] valgrind-tests: fixed misleading help message.
Date: Wed, 28 May 2014 09:42:43 -0400

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            |    7 +++++++
 m4/valgrind-tests.m4 |    4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index fc8a081..f2ccae0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2014-05-28  Kieran Colford  <address@hidden>
+
+       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-22  Pádraig Brady  <address@hidden>
 
        getlogin_r-tests: check return value rather than errno
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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]