diff options
author | Evgeny Vereshchagin <evvers@ya.ru> | 2015-12-29 07:11:53 +0000 |
---|---|---|
committer | Evgeny Vereshchagin <evvers@ya.ru> | 2015-12-29 07:44:56 +0000 |
commit | 4854dc589f61c51503971ffd0edaad9973260572 (patch) | |
tree | fa263788cdd003e56133623d18574e4f268dbd61 /Makefile.am | |
parent | b038f6d1d83606b25f84e180745e263ccee3c61b (diff) | |
download | systemd-4854dc589f61c51503971ffd0edaad9973260572.tar.gz |
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.am | 2 |
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 |