summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorEvgeny Vereshchagin <evvers@ya.ru>2015-12-29 07:11:53 +0000
committerEvgeny Vereshchagin <evvers@ya.ru>2015-12-29 07:44:56 +0000
commit4854dc589f61c51503971ffd0edaad9973260572 (patch)
treefa263788cdd003e56133623d18574e4f268dbd61 /Makefile.am
parentb038f6d1d83606b25f84e180745e263ccee3c61b (diff)
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 ```
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
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