The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / keyutils / 0002-fix-install-rule.patch
1 Makefile: fix install rule
2
3 Do not link the .so with an absolute path, otherwise it may point to
4 the host library.
5
6 Based on the former patch by Yann E. MORIN.
7
8 Signed-off-by: Vicente Olivert Riera <vincent.riera@imgtec.com>
9
10 --- keyutils-1.5.9/Makefile.orig        2014-09-22 16:13:41.593562765 +0100
11 +++ keyutils-1.5.9/Makefile     2014-09-22 16:14:05.377963952 +0100
12 @@ -168,7 +168,7 @@ ifeq ($(NO_SOLIB),0)
13         $(INSTALL) -D $(LIBNAME) $(DESTDIR)$(LIBDIR)/$(LIBNAME)
14         $(LNS) $(LIBNAME) $(DESTDIR)$(LIBDIR)/$(SONAME)
15         mkdir -p $(DESTDIR)$(USRLIBDIR)
16 -       $(LNS) $(LIBDIR)/$(SONAME) $(DESTDIR)$(USRLIBDIR)/$(DEVELLIB)
17 +       $(LNS) $(SONAME) $(DESTDIR)$(USRLIBDIR)/$(DEVELLIB)
18  endif
19         $(INSTALL) -D keyctl $(DESTDIR)$(BINDIR)/keyctl
20         $(INSTALL) -D request-key $(DESTDIR)$(SBINDIR)/request-key