summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2010-03-30 23:13:34 +0200
committerSimon Josefsson <simon@josefsson.org>2010-03-30 23:13:34 +0200
commit12fbe47f33b6d03ff28ff9bc9e5e9405b110d883 (patch)
tree9b10080d90fcab826f834d7c726d7751c04851c2 /m4
parent0e7a3f059504df3fad633b6d5b9b67f973674e2a (diff)
downloadgnutls-12fbe47f33b6d03ff28ff9bc9e5e9405b110d883.tar.gz
Check for what we use. Bump serial.
Diffstat (limited to 'm4')
-rw-r--r--m4/valgrind.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/valgrind.m4 b/m4/valgrind.m4
index 0698d573fe..c460c34306 100644
--- a/m4/valgrind.m4
+++ b/m4/valgrind.m4
@@ -1,4 +1,4 @@
-# valgrind.m4 serial 2
+# valgrind.m4 serial 3
dnl Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
@@ -21,7 +21,7 @@ AC_DEFUN([sj_VALGRIND],
AC_CHECK_PROGS(VALGRIND, valgrind)
fi
- if test -n "$VALGRIND" && $VALGRIND true > /dev/null 2>&1; then
+ if test -n "$VALGRIND" && $VALGRIND -q true > /dev/null 2>&1; then
opt_valgrind_tests=yes
VALGRIND="$VALGRIND -q"
else