From: Lutz Jänicke Date: Mon, 28 Jan 2002 16:30:06 +0000 (+0000) Subject: Superflous '\' messes up with HP-UX make. X-Git-Tag: OpenSSL-engine-0_9_6c^2^2~48 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=0f180d1d1d53dc8022757a7501bf9829a8ccdcb6 Superflous '\' messes up with HP-UX make. --- diff --git a/Makefile.org b/Makefile.org index 171635647c..8e225ef54c 100644 --- a/Makefile.org +++ b/Makefile.org @@ -215,7 +215,7 @@ sub_all: else \ $(MAKE) $$i; \ fi; \ - done; \ + done; libcrypto$(SHLIB_EXT): libcrypto.a @if [ "$(SHLIB_TARGET)" != "" ]; then \ @@ -223,6 +223,7 @@ libcrypto$(SHLIB_EXT): libcrypto.a else \ echo "There's no support for shared libraries on this platform" >&2; \ fi + libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a @if [ "$(SHLIB_TARGET)" != "" ]; then \ $(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \