1
0
mirror of https://github.com/Cloudef/bemenu synced 2024-11-22 17:02:05 +01:00

make: use -soname, instead of -soname=

This commit is contained in:
Jari Vetoniemi 2020-05-07 14:47:42 +09:00
parent f47d753135
commit d5ad43bae5

@ -38,7 +38,7 @@ wayland: bemenu-renderer-wayland.so
$(libs): private override full=$(addsuffix .$(VERSION), $@)
$(libs): private override major=$(addsuffix .$(firstword $(subst ., ,$(VERSION))), $@)
$(libs): %: VERSION .git/index
$(LINK.c) -shared -fPIC $(filter %.c %.a,$^) $(LDLIBS) -o $(full) -Wl,-soname=$(major)
$(LINK.c) -shared -fPIC $(filter %.c %.a,$^) $(LDLIBS) -o $(full) -Wl,-soname,$(major)
ln -fs $(full) $(major)
ln -fs $(full) $@