diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2020-01-27 14:40:57 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2020-01-27 14:40:57 +0000 |
commit | e546ffb9c0cb4bfa20e529e5bba0940400a90f8e (patch) | |
tree | 1a6984c27f0f6aba1c0a5108385ba4b8002271ca | |
parent | 54da37443c1c9a9a0a4cc6ee38932f6623fa8e06 (diff) | |
download | execline-e546ffb9c0cb4bfa20e529e5bba0940400a90f8e.tar.xz |
Fix installed shared lib dependencies
-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 |