diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2016-09-29 16:33:16 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-10-28 11:27:33 +0100 |
commit | e7150ee8adabaa4c68d3b4016f3fff2253d77dd7 (patch) | |
tree | 84570efe4c9654cd51d1d8e13b7ffc833e32083c /meta/recipes-kernel | |
parent | 1867b527b81e28c7003aaea137695a7411a1e68f (diff) | |
download | openembedded-core-e7150ee8adabaa4c68d3b4016f3fff2253d77dd7.tar.gz openembedded-core-e7150ee8adabaa4c68d3b4016f3fff2253d77dd7.tar.bz2 openembedded-core-e7150ee8adabaa4c68d3b4016f3fff2253d77dd7.zip |
kmod: enable optional building of manpages
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r-- | meta/recipes-kernel/kmod/kmod.inc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-kernel/kmod/kmod.inc b/meta/recipes-kernel/kmod/kmod.inc index 166b3f02f8..a59c30586e 100644 --- a/meta/recipes-kernel/kmod/kmod.inc +++ b/meta/recipes-kernel/kmod/kmod.inc @@ -12,7 +12,7 @@ SECTION = "base" LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \ file://libkmod/COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \ " -inherit autotools gtk-doc pkgconfig +inherit autotools gtk-doc pkgconfig manpages SRCREV = "65a885df5f6f15222b44fd695c5eaca17e837a14" # Lookout for PV bump too when SRCREV is changed @@ -27,10 +27,11 @@ SRC_URI = "git://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git \ S = "${WORKDIR}/git" EXTRA_AUTORECONF += "--install --symlink" -EXTRA_OECONF +=" --enable-tools --disable-manpages --with-zlib" +EXTRA_OECONF +=" --enable-tools --with-zlib" PACKAGECONFIG[debug] = "--enable-debug,--disable-debug" PACKAGECONFIG[logging] = " --enable-logging,--disable-logging" +PACKAGECONFIG[manpages] = "--enable-manpages, --disable-manpages, libxslt-native xmlto-native" do_configure_prepend () { gtkdocize --docdir ${S}/libkmod/docs --srcdir ${S} |