From: Richard Levitte Date: Sat, 26 Jan 2002 16:50:40 +0000 (+0000) Subject: Make sure libssl.sl will depend on the local libcrypto.sl, not on X-Git-Tag: OpenSSL_0_9_6d-beta1~67 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=babc4d0e7a8f5654c2cd90bfe91b3f1f7b4c1ec6;p=oweals%2Fopenssl.git Make sure libssl.sl will depend on the local libcrypto.sl, not on another (that possibly doesn't even exist!). --- diff --git a/Makefile.org b/Makefile.org index df02816e6b..ba8812196a 100644 --- a/Makefile.org +++ b/Makefile.org @@ -400,7 +400,7 @@ do_irix-shared: # This assumes that GNU utilities are *not* used do_hpux-shared: - libs='${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ + libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ ( set -x; /usr/ccs/bin/ld ${SHARED_LDFLAGS} \ +vnocompatwarnings \ -b -z -o lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \ @@ -411,7 +411,7 @@ do_hpux-shared: # This assumes that GNU utilities are *not* used do_hpux64-shared: - libs='${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ + libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ ( set -x; /usr/ccs/bin/ld ${SHARED_LDFLAGS} \ -b -z -o lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \ +h lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \