summaryrefslogtreecommitdiffstats
path: root/recipes-devtools
diff options
context:
space:
mode:
authorMingli Yu <mingli.yu@windriver.com>2023-01-31 15:29:06 +0800
committerBruce Ashfield <bruce.ashfield@gmail.com>2023-02-10 12:58:29 -0500
commit24f5ab34cbbe51dd753c07e26070bd10387bfa74 (patch)
treecc58633be7628fdc5777698b5e86cb709b804ee4 /recipes-devtools
parent0fc6be16c6e2b149dfd64ca7e38369c35aa09394 (diff)
downloadmeta-virtualization-24f5ab34cbbe51dd753c07e26070bd10387bfa74.tar.gz
yq: fix QA issues
Fixes: ERROR: yq-1.13.1+gite0f5cb3c5958e57c7f250a7030e92c768c1b2b19-r0 do_package_qa: QA Issue: /usr/lib64/go/src/github.com/mikefarah/yq/debian/rules contained in package yq-dev requires /usr/bin/make, but no providers found in RDEPENDS:yq-dev? [file-rdeps] ERROR: yq-1.13.1+gite0f5cb3c5958e57c7f250a7030e92c768c1b2b19-r0 do_package_qa: QA Issue: /usr/lib64/go/src/github.com/mikefarah/yq/scripts/xcompile.sh contained in package yq-dev requires /bin/bash, but no providers found in RDEPENDS:yq-dev? [file-rdeps] Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-devtools')
-rw-r--r--recipes-devtools/yq/yq_git.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-devtools/yq/yq_git.bb b/recipes-devtools/yq/yq_git.bb
index 0f73362c..daa9ab8f 100644
--- a/recipes-devtools/yq/yq_git.bb
+++ b/recipes-devtools/yq/yq_git.bb
@@ -49,8 +49,8 @@ do_compile:prepend() {
49do_install:append() { 49do_install:append() {
50 # these bring in dependencies for the -dev package on bash, and we don't 50 # these bring in dependencies for the -dev package on bash, and we don't
51 # need them .. so we remove them to avoid needing that rdepends 51 # need them .. so we remove them to avoid needing that rdepends
52 rm -rf ${D}/${prefix}/lib/go/src/${GO_IMPORT}/debian/rules 52 rm -rf ${D}/${libdir}/go/src/${GO_IMPORT}/debian/rules
53 rm -rf ${D}/${prefix}/lib/go/src/${GO_IMPORT}/scripts 53 rm -rf ${D}/${libdir}/go/src/${GO_IMPORT}/scripts
54} 54}
55 55
56BBCLASSEXTEND = "native" 56BBCLASSEXTEND = "native"