diff options
author | Vicente Olivert Riera <Vincent.Riera@imgtec.com> | 2014-09-24 09:44:19 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-09-28 22:30:05 +0200 |
commit | 339df19f7a851ea7c92bc8d01c577e7d5fe20023 (patch) | |
tree | b37223d63d4bccabd4339f334f0e574a6e835d1e /package/keyutils/keyutils-05-fix-install-rule.patch | |
parent | 155a48bac214bd600f4aaa4211469d9c8f2b48f5 (diff) | |
download | buildroot-339df19f7a851ea7c92bc8d01c577e7d5fe20023.tar.gz buildroot-339df19f7a851ea7c92bc8d01c577e7d5fe20023.zip |
keyutils: Bump version to 1.5.9, fix patches and
- Bump version to 1.5.9
- Remove patches already included in this version
- Use make parameters instead of environment variables
- Add an upstream patch to fix building statically
- Adapt old patches to the new version
- Add a hash file
Fixes:
http://autobuild.buildroot.net/results/ced/ced596bd1c73286f7044f5a8e11b6588fc973f11/
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/keyutils/keyutils-05-fix-install-rule.patch')
-rw-r--r-- | package/keyutils/keyutils-05-fix-install-rule.patch | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/package/keyutils/keyutils-05-fix-install-rule.patch b/package/keyutils/keyutils-05-fix-install-rule.patch deleted file mode 100644 index 74e5670cf6..0000000000 --- a/package/keyutils/keyutils-05-fix-install-rule.patch +++ /dev/null @@ -1,19 +0,0 @@ -Makefile: fix install rule - -Do not link the .so with an absolute path, otherwise it may point to -the host library. - -Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> - -diff -durN keyutils-1.5.5.orig/Makefile keyutils-1.5.5/Makefile ---- keyutils-1.5.5.orig/Makefile 2012-10-22 20:11:57.188548033 +0200 -+++ keyutils-1.5.5/Makefile 2012-10-22 20:14:40.868236838 +0200 -@@ -127,7 +127,7 @@ - $(INSTALL) -D $(LIBNAME) $(DESTDIR)$(LIBDIR)/$(LIBNAME) - $(LNS) $(LIBNAME) $(DESTDIR)$(LIBDIR)/$(SONAME) - mkdir -p $(DESTDIR)$(USRLIBDIR) -- $(LNS) $(LIBDIR)/$(SONAME) $(DESTDIR)$(USRLIBDIR)/$(DEVELLIB) -+ $(LNS) $(SONAME) $(DESTDIR)$(USRLIBDIR)/$(DEVELLIB) - $(INSTALL) -D keyctl $(DESTDIR)$(BINDIR)/keyctl - $(INSTALL) -D request-key $(DESTDIR)$(SBINDIR)/request-key - $(INSTALL) -D request-key-debug.sh $(DESTDIR)$(SHAREDIR)/request-key-debug.sh |