From: Alessandro Ghedini Date: Sat, 5 Sep 2015 11:06:51 +0000 (+0200) Subject: Use the shlib wrapper when running nptest X-Git-Tag: OpenSSL_1_1_0-pre1~713 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2519b4e18101a7e987dad842084cd1da5da5c191;p=oweals%2Fopenssl.git Use the shlib wrapper when running nptest Since there seems to be no way to avoid linking to libssl and libcrypto, just wrap the test. This unbreaks "shared" builds when using clang and/or OS X. Signed-off-by: Rich Salz Reviewed-by: Ben Laurie --- diff --git a/test/Makefile b/test/Makefile index 0ee38bf119..c85e8d80b6 100644 --- a/test/Makefile +++ b/test/Makefile @@ -173,7 +173,7 @@ alltests: \ test_np: $(NPTEST)$(EXE_EXT) @echo $(START) $@ - ./$(NPTEST) + ../util/shlib_wrap.sh ./$(NPTEST) test_evp: $(EVPTEST)$(EXE_EXT) evptests.txt @echo $(START) $@