From: Richard Levitte Date: Fri, 28 Oct 2016 21:57:58 +0000 (+0200) Subject: Add $(EX_LIBS) to the LIBDEPS for libgost.so, just as for all other engines X-Git-Tag: OpenSSL_1_0_2k~51 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=787b2dcc2fec8fa5b5c91c64dd06da850e9ea347;p=oweals%2Fopenssl.git 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) --- 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); \