From 21531692f62006ac3078c070e348d5eeab02b730 Mon Sep 17 00:00:00 2001 From: Vitalii Koshura Date: Wed, 3 Aug 2022 13:37:06 +0200 Subject: [PATCH] Fix missing '-lz' parameter when building 'stage_file_native' tool Signed-off-by: Vitalii Koshura --- tools/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/Makefile.am b/tools/Makefile.am index b25cb851cf..498934f1a7 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -61,7 +61,7 @@ sign_executable_SOURCES = sign_executable.cpp sign_executable_LDADD = $(SERVERLIBS_MIN) stage_file_native_SOURCES = stage_file_native.cpp -stage_file_native_LDADD = $(SERVERLIBS) +stage_file_native_LDADD = $(SERVERLIBS) -lz remote_submit_test_SOURCES = remote_submit_test.cpp ../lib/remote_submit.cpp remote_submit_test_LDADD = $(SERVERLIBS) -lcurl