summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlper Ak <alperyasinak1@gmail.com>2025-11-28 22:34:25 +0300
committerAnuj Mittal <anuj.mittal@oss.qualcomm.com>2025-12-17 13:57:12 +0530
commit47ec9cd465d4d89a44c0e039e5456c27eb4c49d0 (patch)
tree6661570cacf141a7bbe2cca65202e8fea995728a
parent58b226bbdef00d7d6aaebebab414ba0ecfd78413 (diff)
downloadmeta-openembedded-47ec9cd465d4d89a44c0e039e5456c27eb4c49d0.tar.gz
proj: Fix do_package QA issue for unshipped bash-completion files
Add bash-completion directory to FILES to resolve the installed-vs-shipped QA error. Fix: ERROR: proj-9.7.0-r0 do_package: QA Issue: proj: Files/directories were installed but not shipped in any package: /usr/share/bash-completion /usr/share/bash-completion/completions /usr/share/bash-completion/completions/projinfo Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. proj: 3 installed and not shipped files. [installed-vs-shipped] ERROR: proj-9.7.0-r0 do_package: Fatal QA errors were found, failing task. Signed-off-by: Alper Ak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 1175d5c8c13d73568d4ab55a3cf628456fcc1a7d) Signed-off-by: Ankur Tyagi <ankur.tyagi85@gmail.com> Signed-off-by: Anuj Mittal <anuj.mittal@oss.qualcomm.com>
-rw-r--r--meta-oe/recipes-navigation/proj/proj_9.7.0.bb4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-oe/recipes-navigation/proj/proj_9.7.0.bb b/meta-oe/recipes-navigation/proj/proj_9.7.0.bb
index 2a41f1ec52..eb9fe46f30 100644
--- a/meta-oe/recipes-navigation/proj/proj_9.7.0.bb
+++ b/meta-oe/recipes-navigation/proj/proj_9.7.0.bb
@@ -12,7 +12,9 @@ inherit bash-completion cmake lib_package pkgconfig
12 12
13EXTRA_OECMAKE = "-DBUILD_TESTING=OFF" 13EXTRA_OECMAKE = "-DBUILD_TESTING=OFF"
14 14
15FILES:${PN} += "${datadir}/proj" 15FILES:${PN} += " \
16 ${datadir}/proj \
17 ${datadir}/bash-completion"
16 18
17BBCLASSEXTEND = "native" 19BBCLASSEXTEND = "native"
18 20