summaryrefslogtreecommitdiffstats
path: root/Makefile.org
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-01-26 16:50:40 +0000
committerRichard Levitte <levitte@openssl.org>2002-01-26 16:50:40 +0000
commitbabc4d0e7a8f5654c2cd90bfe91b3f1f7b4c1ec6 (patch)
tree3393761f944f2d7982f82e62a041f3ba911fc121 /Makefile.org
parentc9c111468c36679f160d765fb05f3ca0eb2e9ed5 (diff)
Make sure libssl.sl will depend on the local libcrypto.sl, not on
another (that possibly doesn't even exist!).
Diffstat (limited to 'Makefile.org')
-rw-r--r--Makefile.org4
1 files changed, 2 insertions, 2 deletions
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} \