Message ID | 20201221232428.298710-2-bluca@debian.org (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | [v5] Allow to build and run sign/digest on Windows | expand |
diff --git a/Makefile b/Makefile index f1ba956..583db8e 100644 --- a/Makefile +++ b/Makefile @@ -87,9 +87,9 @@ CFLAGS += $(shell "$(PKGCONF)" libcrypto --cflags 2>/dev/null || echo) # If we are dynamically linking, when running tests we need to override # LD_LIBRARY_PATH as no RPATH is set ifdef USE_SHARED_LIB -RUN_FSVERITY = LD_LIBRARY_PATH=./ ./fsverity +RUN_FSVERITY = LD_LIBRARY_PATH=./ $(TEST_WRAPPER_PROG) ./fsverity else -RUN_FSVERITY = ./fsverity +RUN_FSVERITY = $(TEST_WRAPPER_PROG) ./fsverity endif ##############################################################################
Allows make check to run fsverity under the desired tool Signed-off-by: Luca Boccassi <bluca@debian.org> --- v6: split from mingw patch Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)