diff options
author | Christopher Larson <chris_larson@mentor.com> | 2018-06-22 02:07:35 +0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-06-27 13:53:28 +0100 |
commit | af4f0d44acef328245dfe1bd102bb5e61293ee2d (patch) | |
tree | da217f2094f7b08384ced116f7e6f6c5e9d9151b | |
parent | 747c7dc8702d2241475894876d06a2f1f2b29fed (diff) | |
download | openembedded-core-af4f0d44acef328245dfe1bd102bb5e61293ee2d.tar.gz openembedded-core-af4f0d44acef328245dfe1bd102bb5e61293ee2d.tar.bz2 openembedded-core-af4f0d44acef328245dfe1bd102bb5e61293ee2d.zip |
dmidecode: correct docdir
Without this, the package clutters up the root of /usr/share/doc.
Signed-off-by: Christopher Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/dmidecode/dmidecode_3.1.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-devtools/dmidecode/dmidecode_3.1.bb b/meta/recipes-devtools/dmidecode/dmidecode_3.1.bb index f83281e235..b423fda6d2 100644 --- a/meta/recipes-devtools/dmidecode/dmidecode_3.1.bb +++ b/meta/recipes-devtools/dmidecode/dmidecode_3.1.bb @@ -9,6 +9,10 @@ COMPATIBLE_HOST = "(i.86|x86_64|aarch64|arm|powerpc|powerpc64).*-linux" EXTRA_OEMAKE = "-e MAKEFLAGS=" +# The upstream buildsystem uses 'docdir' as the path where it puts AUTHORS, +# README, etc, but we don't want those in the root of our docdir. +docdir .= "/${BPN}" + do_install() { oe_runmake DESTDIR="${D}" install } |