summaryrefslogtreecommitdiffstats
path: root/recipes-security/keyutils/files/keyutils-use-relative-path-for-link.patch
diff options
context:
space:
mode:
authorArmin Kuster <akuster808@gmail.com>2019-03-04 09:07:28 -0800
committerArmin Kuster <akuster808@gmail.com>2019-03-06 11:49:35 -0800
commit49cdcd42e9ac0cb81db200cd80b78408a357d839 (patch)
treefd5aac30bb10f6ac1eb6c55f410dc8c4a83a36ba /recipes-security/keyutils/files/keyutils-use-relative-path-for-link.patch
parent6cc71c7d0777f92461ac8fe50831ae839a6fdf89 (diff)
downloadmeta-security-49cdcd42e9ac0cb81db200cd80b78408a357d839.tar.gz
keyutils: update to 1.6
remove patch now included in update: keyutils-use-relative-path-for-link.patch Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'recipes-security/keyutils/files/keyutils-use-relative-path-for-link.patch')
-rw-r--r--recipes-security/keyutils/files/keyutils-use-relative-path-for-link.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/recipes-security/keyutils/files/keyutils-use-relative-path-for-link.patch b/recipes-security/keyutils/files/keyutils-use-relative-path-for-link.patch
deleted file mode 100644
index dde1af4..0000000
--- a/recipes-security/keyutils/files/keyutils-use-relative-path-for-link.patch
+++ /dev/null
@@ -1,28 +0,0 @@
1Subject: [PATCH] keyutils: use relative path for link
2
3The absolute path of the symlink will be invalid
4when populated in sysroot, so use relative path instead.
5
6Upstream-Status: Pending
7
8Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
9---
10 Makefile | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/Makefile b/Makefile
14index 824bbbf..8ce3a13 100644
15--- a/Makefile
16+++ b/Makefile
17@@ -167,7 +167,7 @@ ifeq ($(NO_SOLIB),0)
18 $(INSTALL) -D $(LIBNAME) $(DESTDIR)$(LIBDIR)/$(LIBNAME)
19 $(LNS) $(LIBNAME) $(DESTDIR)$(LIBDIR)/$(SONAME)
20 mkdir -p $(DESTDIR)$(USRLIBDIR)
21- $(LNS) $(LIBDIR)/$(SONAME) $(DESTDIR)$(USRLIBDIR)/$(DEVELLIB)
22+ $(LNS) $(SONAME) $(DESTDIR)$(USRLIBDIR)/$(DEVELLIB)
23 endif
24 $(INSTALL) -D keyctl $(DESTDIR)$(BINDIR)/keyctl
25 $(INSTALL) -D request-key $(DESTDIR)$(SBINDIR)/request-key
26--
272.11.0
28