From: Maciej Wolny Date: Wed, 2 May 2018 16:54:08 +0000 (+0100) Subject: tests/Makefile.am: use LIBTOOL variable instead of hardcoded name X-Git-Tag: v4.4.0-rc1~368 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=12fd47bced91fae5fc705ff5eac6f3491dcc6a6a;p=thirdparty%2Flibvirt.git tests/Makefile.am: use LIBTOOL variable instead of hardcoded name Fixes "can't find libtool" error when running valgrind checks. Signed-off-by: Maciej Wolny Reviewed-by: Andrea Bolognani --- diff --git a/tests/Makefile.am b/tests/Makefile.am index 7b93fbde69..05db6b1192 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -487,7 +487,7 @@ VALGRIND = valgrind --quiet --leak-check=full --trace-children=yes \ --trace-children-skip="*/tools/virsh","*/tests/commandhelper" \ --suppressions=$(srcdir)/.valgrind.supp valgrind: - $(MAKE) check VG="libtool --mode=execute $(VALGRIND)" + $(MAKE) check VG="$(LIBTOOL) --mode=execute $(VALGRIND)" sockettest_SOURCES = \ sockettest.c \