From: Evgeny Vereshchagin Date: Tue, 29 Dec 2015 07:11:53 +0000 (+0000) Subject: build-sys: fix valgrind-tests X-Git-Tag: v229~182^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F2237%2Fhead;p=thirdparty%2Fsystemd.git 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 ``` --- diff --git a/Makefile.am b/Makefile.am index 00a92e34e03..3516b50385d 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