diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2020-01-27 15:08:53 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2020-01-27 15:08:53 +0000 |
commit | 9c6de6100c10aaf35461887e31588ab4cd9035f5 (patch) | |
tree | ff22591b1f43f099dd4086202aea7f149f90e5e8 /Makefile | |
parent | 1b77e5d7ced260b8d9a8d4f90d9ed9a5ac06da37 (diff) | |
download | s6-networking-9c6de6100c10aaf35461887e31588ab4cd9035f5.tar.xz |
Fix shared libs installation
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -111,10 +111,9 @@ endif $(DESTDIR)$(datadir)/%: src/etc/% exec $(INSTALL) -D -m 644 $< $@ -$(DESTDIR)$(dynlibdir)/lib%.so: lib%.so.xyzzy +$(DESTDIR)$(dynlibdir)/lib%.so $(DESTDIR)$(dynlibdir)/lib%.so.$(version_M): lib%.so.xyzzy $(INSTALL) -D -m 755 $< $@.$(version) && \ - $(INSTALL) -l $(@F).$(version) $@.$(version_m) && \ - $(INSTALL) -l $(@F).$(version_m) $@.$(version_M) && \ + $(INSTALL) -l $(@F).$(version) $@.$(version_M) && \ exec $(INSTALL) -l $(@F).$(version_M) $@ $(DESTDIR)$(libexecdir)/% $(DESTDIR)$(bindir)/%: % package/modes |