diff options
| author | Martin Jansa <Martin.Jansa@gmail.com> | 2021-04-04 01:03:27 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2021-04-06 09:02:12 -0700 |
| commit | ccba1eb6a8b4c850e26e5814adfb5136ca4865a8 (patch) | |
| tree | f2cec950f1c8367e6b93f36aaae04d3c4d2ad56f | |
| parent | e721f6d9444779cfd5f5de54c0cf4fe2f15fc74d (diff) | |
| download | meta-openembedded-ccba1eb6a8b4c850e26e5814adfb5136ca4865a8.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>
| -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" |
