diff options
author | Richard Levitte <levitte@openssl.org> | 2016-02-24 01:45:25 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-02-25 14:50:29 +0100 |
commit | 37529928faa8456e85a9c5ad9255517da8dd0c61 (patch) | |
tree | 6848f756e18e6ef5119b55eab5647ce8ab8e4745 /Makefile.shared | |
parent | Make it possible to build even if dependency files can't be generated (diff) | |
download | openssl-37529928faa8456e85a9c5ad9255517da8dd0c61.tar.xz openssl-37529928faa8456e85a9c5ad9255517da8dd0c61.zip |
Solaris DSOs were still named libFOO.so, fixed
Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'Makefile.shared')
-rw-r--r-- | Makefile.shared | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.shared b/Makefile.shared index 5100b5d8b2..2e9f3f5954 100644 --- a/Makefile.shared +++ b/Makefile.shared @@ -360,7 +360,7 @@ link_dso.solaris: $(DO_GNU_DSO); \ else \ $(CALC_VERSIONS); \ - SHLIB=lib$(LIBNAME).so; \ + SHLIB=$(LIBNAME).so; \ SHLIB_SUFFIX=; \ ALLSYMSFLAGS=""; \ NOALLSYMSFLAGS=""; \ |