diff options
author | Simon Josefsson <simon@josefsson.org> | 2010-03-30 23:14:43 +0200 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2010-03-30 23:14:43 +0200 |
commit | 1c350790490e15698e589fe7a9d979d17219b37f (patch) | |
tree | f62ae1c998b4e833e6c8e7b4f4de1b9befa123f4 /m4 | |
parent | 419377214716c3c49145a327723ffc6f83ce6ca3 (diff) | |
download | libtasn1-1c350790490e15698e589fe7a9d979d17219b37f.tar.gz libtasn1-1c350790490e15698e589fe7a9d979d17219b37f.tar.bz2 libtasn1-1c350790490e15698e589fe7a9d979d17219b37f.zip |
Sync valgrind.m4.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/valgrind.m4 | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/m4/valgrind.m4 b/m4/valgrind.m4 index e22370f..c460c34 100644 --- a/m4/valgrind.m4 +++ b/m4/valgrind.m4 @@ -1,5 +1,5 @@ -# valgrind.m4 serial 2 -dnl Copyright (C) 2008, 2009 Free Software Foundation, Inc. +# 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, dnl with or without modifications, as long as this notice is preserved. @@ -21,8 +21,9 @@ 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 opt_valgrind_tests=no VALGRIND= |