From: Evgeny Vereshchagin Date: Tue, 29 Dec 2015 07:11:53 +0000 (+0000) Subject: build-sys: fix valgrind-tests X-Git-Tag: v231~823^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4854dc589f61c51503971ffd0edaad9973260572;p=platform%2Fupstream%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 00a92e3..3516b50 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