diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2020-01-27 15:09:03 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2020-01-27 15:09:03 +0000 |
commit | 3d84b26b5fcdd960d652ee01b7f6b0bc47949baa (patch) | |
tree | 8a2c13881633c47b079b10c9387d4bcf843f6b14 /Makefile | |
parent | efe2eb4bbf383864ff2bb83fb0d10d98ce8fd1da (diff) | |
download | s6-rc-3d84b26b5fcdd960d652ee01b7f6b0bc47949baa.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 |