diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2021-04-06 20:43:25 +0200 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2021-04-23 18:45:08 -0700 |
commit | 16de5f93d5da9af767c663b80d740aae07555a80 (patch) | |
tree | 0499ad04405fa560330cc4fcc443a54d2b25296a | |
parent | 430ef96fe65f62d8da995f446d5b9b093544f031 (diff) | |
download | meta-openembedded-16de5f93d5da9af767c663b80d740aae07555a80.tar.gz |
uml-utilities: fix installed-vs-shipped with usrmerge
* fixes:
ERROR: uml-utilities-20040406-r1 do_package: QA Issue: uml-utilities: Files/directories were installed but not shipped in any package:
/usr/lib/uml/port-helper
Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install.
uml-utilities: 1 installed and not shipped files. [installed-vs-shipped]
* pass LIB_DIR instead of using default value from Makefile:
$ grep LIB_DIR.*= tools/port-helper/Makefile
LIB_DIR ?= /usr/lib/uml
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-oe/recipes-extended/uml-utilities/uml-utilities_20040406.bb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/meta-oe/recipes-extended/uml-utilities/uml-utilities_20040406.bb b/meta-oe/recipes-extended/uml-utilities/uml-utilities_20040406.bb index ed19d1e41a..de1fc3a1fe 100644 --- a/meta-oe/recipes-extended/uml-utilities/uml-utilities_20040406.bb +++ b/meta-oe/recipes-extended/uml-utilities/uml-utilities_20040406.bb | |||
@@ -16,12 +16,11 @@ PR = "r1" | |||
16 | S = "${WORKDIR}/tools" | 16 | S = "${WORKDIR}/tools" |
17 | 17 | ||
18 | do_compile() { | 18 | do_compile() { |
19 | oe_runmake | 19 | oe_runmake LIB_DIR=${libdir}/uml |
20 | } | 20 | } |
21 | 21 | ||
22 | do_install() { | 22 | do_install() { |
23 | oe_runmake install DESTDIR=${D} | 23 | oe_runmake install DESTDIR=${D} |
24 | } | 24 | } |
25 | 25 | ||
26 | FILES_${PN} += "${exec_prefix}${nonarch_base_libdir}" | 26 | FILES_${PN} += "${libdir}/uml" |
27 | FILES_${PN}-dbg += "${exec_prefix}${nonarch_base_libdir}/uml/.debug" | ||