From 787b2dcc2fec8fa5b5c91c64dd06da850e9ea347 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Fri, 28 Oct 2016 23:57:58 +0200 Subject: [PATCH] Add $(EX_LIBS) to the LIBDEPS for libgost.so, just as for all other engines Without this, any linker flag the user gave when configuring are ignored. Reviewed-by: Andy Polyakov (Merged from https://github.com/openssl/openssl/pull/1803) --- engines/ccgost/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/ccgost/Makefile b/engines/ccgost/Makefile index 17e1efbdff..f378530c86 100644 --- a/engines/ccgost/Makefile +++ b/engines/ccgost/Makefile @@ -32,7 +32,7 @@ lib: $(LIBOBJ) $(MAKE) -f $(TOP)/Makefile.shared -e \ LIBNAME=$(LIBNAME) \ LIBEXTRAS='$(LIBOBJ)' \ - LIBDEPS='-L$(TOP) -lcrypto' \ + LIBDEPS='-L$(TOP) -lcrypto $(EX_LIBS)' \ link_o.$(SHLIB_TARGET); \ else \ $(AR) $(LIB) $(LIBOBJ); \ -- 2.25.1