diff options
author | Your Name <you@example.com> | 2022-02-24 17:00:55 -0500 |
---|---|---|
committer | Your Name <you@example.com> | 2022-02-24 17:00:55 -0500 |
commit | e062f308c82fce1d4f0540063b8f99fc323d49d7 (patch) | |
tree | 8755c68cecfc270c221f45fc65cb1352ab7b7cff /src/lib/Makefile | |
parent | 7e7bf42a82c2778354a2ddc40045ac1f6540594f (diff) | |
download | libbible-e062f308c82fce1d4f0540063b8f99fc323d49d7.tar.gz libbible-e062f308c82fce1d4f0540063b8f99fc323d49d7.tar.bz2 libbible-e062f308c82fce1d4f0540063b8f99fc323d49d7.zip |
Creates soname symlink
Diffstat (limited to 'src/lib/Makefile')
-rw-r--r-- | src/lib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Makefile b/src/lib/Makefile index 4f0d2cf..80b7bb7 100644 --- a/src/lib/Makefile +++ b/src/lib/Makefile @@ -5,7 +5,7 @@ SOURCES = $(wildcard *.cc) OBJECTS = $(SOURCES:.cc=.o) DEPS = $(OBJECTS:.o=.d) LIBRARY = libbible -SONAME = $(LIBRARY).so.$(word 1, $(subst ., , $(version))) +SONAME = $(LIBRARY).so.$(soname_version) LIBRARY_STATIC = $(LIBRARY).a LIBRARY_SHARED = $(LIBRARY).so |