diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2012-02-24 06:53:00 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-06 10:21:18 +0100 |
commit | 7d782a6ef77072d7f0fe50d8208c24c9e9ea9507 (patch) | |
tree | 503a01768ddf1e368aac96565b11d62cc283a954 /meta/recipes-kernel | |
parent | 716606f5446534e48b45fcc017e8bbdfe7f15e26 (diff) | |
download | openembedded-core-7d782a6ef77072d7f0fe50d8208c24c9e9ea9507.tar.gz openembedded-core-7d782a6ef77072d7f0fe50d8208c24c9e9ea9507.tar.bz2 openembedded-core-7d782a6ef77072d7f0fe50d8208c24c9e9ea9507.tar.xz openembedded-core-7d782a6ef77072d7f0fe50d8208c24c9e9ea9507.zip |
kmod: disable man pages generation because we don't have working xsltproc
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r-- | meta/recipes-kernel/kmod/kmod.inc | 1 | ||||
-rw-r--r-- | meta/recipes-kernel/kmod/kmod/0001-man-disable-man-page-generation-because-we-don-t-hav.patch | 26 | ||||
-rw-r--r-- | meta/recipes-kernel/kmod/kmod_git.bb | 4 |
3 files changed, 27 insertions, 4 deletions
diff --git a/meta/recipes-kernel/kmod/kmod.inc b/meta/recipes-kernel/kmod/kmod.inc index 940a3177c..681e52be0 100644 --- a/meta/recipes-kernel/kmod/kmod.inc +++ b/meta/recipes-kernel/kmod/kmod.inc @@ -17,6 +17,7 @@ inherit autotools SRC_URI = "git://git.profusion.mobi/kmod.git;protocol=git;branch=master \ file://depmod-search.conf \ + file://0001-man-disable-man-page-generation-because-we-don-t-hav.patch \ " SRCREV = "02629fa02e96763db7460a930239cc93649a52f8" diff --git a/meta/recipes-kernel/kmod/kmod/0001-man-disable-man-page-generation-because-we-don-t-hav.patch b/meta/recipes-kernel/kmod/kmod/0001-man-disable-man-page-generation-because-we-don-t-hav.patch new file mode 100644 index 000000000..5361b847c --- /dev/null +++ b/meta/recipes-kernel/kmod/kmod/0001-man-disable-man-page-generation-because-we-don-t-hav.patch @@ -0,0 +1,26 @@ +From ce6f0cabb65e67dd4d31e1e555db8bc6eaf435d3 Mon Sep 17 00:00:00 2001 +From: Martin Jansa <Martin.Jansa@gmail.com> +Date: Fri, 24 Feb 2012 07:35:38 +0100 +Subject: [PATCH] man: disable man page generation because we don't have + working xsltproc + +Upstream-Status: Inappropriate [build system specific change] + +Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> +--- + Makefile.am | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/Makefile.am b/Makefile.am +index 141c102..a8bdfd1 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -1,4 +1,4 @@ +-SUBDIRS = . libkmod/docs man ++SUBDIRS = . libkmod/docs + + DISTCLEAN_LOCAL_HOOKS = + EXTRA_DIST = +-- +1.7.8.4 + diff --git a/meta/recipes-kernel/kmod/kmod_git.bb b/meta/recipes-kernel/kmod/kmod_git.bb index 928fa88c7..1ab9f449e 100644 --- a/meta/recipes-kernel/kmod/kmod_git.bb +++ b/meta/recipes-kernel/kmod/kmod_git.bb @@ -14,10 +14,6 @@ bindir = "${base_bindir}" sbindir = "${base_sbindir}" # libdir = "${base_libdir}" -SRC_URI += " \ - file://depmod-search.conf \ - " - do_install_append () { install -dm755 ${D}${base_bindir} install -dm755 ${D}${base_sbindir} |