summaryrefslogtreecommitdiffstats
path: root/Makefile.shared
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-02-22 14:33:38 +0100
committerRichard Levitte <levitte@openssl.org>2016-02-22 16:12:00 +0100
commitd784bcffa3dcd7ac4a0c77bfac4e686dcb771bd9 (patch)
tree01e770d0501395c8595b5cc59998c5c281d14ce0 /Makefile.shared
parent45b71abe7034c8985e1f932d88b4b1239bb27371 (diff)
Fix DSO name on HP/UX
If dlfcn is used, the name was set to lib$(LIBNAME).so when it should have been just $(LIBNAME).so. Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'Makefile.shared')
-rw-r--r--Makefile.shared2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.shared b/Makefile.shared
index 2617fbf4aa..313de4e02f 100644
--- a/Makefile.shared
+++ b/Makefile.shared
@@ -489,7 +489,7 @@ link_app.irix:
link_dso.hpux:
@if $(DETECT_GNU_LD); then $(DO_GNU_DSO); else \
SHLIB=$(LIBNAME).sl; \
- expr "$(CFLAGS)" : '.*DSO_DLFCN' > /dev/null && SHLIB=lib$(LIBNAME).so; \
+ expr "$(CFLAGS)" : '.*DSO_DLFCN' > /dev/null && SHLIB=$(LIBNAME).so; \
SHLIB_SUFFIX=; \
ALLSYMSFLAGS=''; \
NOALLSYMSFLAGS=''; \