diff options
author | Roumen Petrov <openssl@roumenpetrov.info> | 2016-02-23 21:34:16 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-02-23 22:02:46 +0100 |
commit | 1cb7757ee7fde0ca19f64fd6f1886d4b41397b9c (patch) | |
tree | 3b2fe36c8a2703adde1b7484db1f778c07ffb7c1 /Makefile.shared | |
parent | 50e34aaba390926e9d3bc9ffa4b7e3bab394db21 (diff) | |
download | openssl-new-1cb7757ee7fde0ca19f64fd6f1886d4b41397b9c.tar.gz |
correct name of GNU shared libraries
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Richard Levitte <levitte@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 313de4e02f..5100b5d8b2 100644 --- a/Makefile.shared +++ b/Makefile.shared @@ -171,7 +171,7 @@ DO_GNU_DSO=\ $(DO_GNU_SO_COMMON) DO_GNU_SO=\ $(CALC_VERSIONS); \ - SHLIB=lib$$SHLIB; \ + SHLIB=lib$(LIBNAME).so; \ ALLSYMSFLAGS='-Wl,--whole-archive'; \ NOALLSYMSFLAGS='-Wl,--no-whole-archive'; \ $(DO_GNU_SO_COMMON) |