From 4854dc589f61c51503971ffd0edaad9973260572 Mon Sep 17 00:00:00 2001 From: Evgeny Vereshchagin Date: Tue, 29 Dec 2015 07:11:53 +0000 Subject: build-sys: fix valgrind-tests Fixes: ``` $ make valgrind-tests TESTS=test-acl-util GEN valgrind-tests Running test-acl-util /bin/bash: line 4: libtool: command not found ``` --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index 00a92e34e0..3516b50385 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6292,7 +6292,7 @@ valgrind-tests: $(TESTS) if file $$f | grep -q shell; then \ echo -e "$${x}Skipping non-binary $$f"; else \ echo -e "$${x}Running $$f"; \ - libtool --mode=execute valgrind -q --leak-check=full --max-stackframe=5242880 --error-exitcode=55 $(builddir)/$$f ; fi; \ + $(LIBTOOL) --mode=execute valgrind -q --leak-check=full --max-stackframe=5242880 --error-exitcode=55 $(builddir)/$$f ; fi; \ x="\n\n"; \ done -- cgit v1.2.3-54-g00ecf