diff mbox series

[v1,2/3] ax_valgrind_check.m4: update to upstream version

Message ID 1506384005-31536-3-git-send-email-odpbot@yandex.ru
State Superseded
Headers show
Series [v1,1/3] configure: disable all tools except memcheck | expand

Commit Message

Github ODP bot Sept. 26, 2017, midnight UTC
From: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov@linaro.org>


Signed-off-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov@linaro.org>

---
/** Email created from pull request 194 (lumag:fix-valgrind)
 ** https://github.com/Linaro/odp/pull/194
 ** Patch: https://github.com/Linaro/odp/pull/194.patch
 ** Base sha: 886e54149d3ee64e56c422a0d3dd7c536e2b4b7d
 ** Merge commit sha: fd2d7d25fd5c26b2cb36874c7b94567ab1a7bf1e
 **/
 m4/ax_valgrind_check.m4 | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)
diff mbox series

Patch

diff --git a/m4/ax_valgrind_check.m4 b/m4/ax_valgrind_check.m4
index b18babe60..1c1c0cd4b 100644
--- a/m4/ax_valgrind_check.m4
+++ b/m4/ax_valgrind_check.m4
@@ -1,5 +1,5 @@ 
 # ===========================================================================
-#     http://www.gnu.org/software/autoconf-archive/ax_valgrind_check.html
+#    https://www.gnu.org/software/autoconf-archive/ax_valgrind_check.html
 # ===========================================================================
 #
 # SYNOPSIS
@@ -67,7 +67,7 @@ 
 #   and this notice are preserved.  This file is offered as-is, without any
 #   warranty.
 
-#serial 13
+#serial 15
 
 dnl Configured tools
 m4_define([valgrind_tool_list], [[memcheck], [helgrind], [drd], [sgcheck]])
@@ -187,9 +187,8 @@  endif
 # Use recursive makes in order to ignore errors during check
 check-valgrind:
 ifeq ($(VALGRIND_ENABLED),yes)
-	-$(A''M_V_at)$(foreach tool,$(valgrind_enabled_tools), \
-		$(MAKE) $(AM_MAKEFLAGS) -k check-valgrind-$(tool); \
-	)
+	$(A''M_V_at)$(MAKE) $(AM_MAKEFLAGS) -k \
+		$(foreach tool, $(valgrind_enabled_tools), check-valgrind-$(tool))
 else
 	@echo "Need to reconfigure with --enable-valgrind"
 endif