diff options
| author | Martin Jansa <Martin.Jansa@gmail.com> | 2021-04-04 01:03:27 +0200 |
|---|---|---|
| committer | Armin Kuster <akuster808@gmail.com> | 2021-04-07 09:37:36 -0700 |
| commit | e516ff377b9083d32002e2efd2a5bcfec0238cf1 (patch) | |
| tree | 6187d354ad48041bc8bec9f440854dd079437bac /meta-oe/recipes-extended | |
| parent | 02a8f97cb6842d47c53c0c0b189c6707d5f1ccab (diff) | |
| download | meta-openembedded-e516ff377b9083d32002e2efd2a5bcfec0238cf1.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: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit ccba1eb6a8b4c850e26e5814adfb5136ca4865a8)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended')
| -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 8e00cb3ea4..f86b2b912e 100644 --- a/meta-oe/recipes-extended/uml-utilities/uml-utilities_20040406.bb +++ b/meta-oe/recipes-extended/uml-utilities/uml-utilities_20040406.bb | |||
| @@ -18,15 +18,14 @@ S = "${WORKDIR}/tools" | |||
| 18 | inherit update-alternatives | 18 | inherit update-alternatives |
| 19 | 19 | ||
| 20 | do_compile() { | 20 | do_compile() { |
| 21 | oe_runmake | 21 | oe_runmake LIB_DIR=${libdir}/uml |
| 22 | } | 22 | } |
| 23 | 23 | ||
| 24 | do_install() { | 24 | do_install() { |
| 25 | oe_runmake install DESTDIR=${D} | 25 | oe_runmake install DESTDIR=${D} |
| 26 | } | 26 | } |
| 27 | 27 | ||
| 28 | FILES_${PN} += "${exec_prefix}${nonarch_base_libdir}" | 28 | FILES_${PN} += "${libdir}/uml" |
| 29 | FILES_${PN}-dbg += "${exec_prefix}${nonarch_base_libdir}/uml/.debug" | ||
| 30 | 29 | ||
| 31 | ALTERNATIVE_${PN} = "tunctl" | 30 | ALTERNATIVE_${PN} = "tunctl" |
| 32 | ALTERNATIVE_LINK_NAME[tunctl] = "${bindir}/tunctl" | 31 | ALTERNATIVE_LINK_NAME[tunctl] = "${bindir}/tunctl" |
