From cbecb6a83560593830875ade9fd6107733ed86ad Mon Sep 17 00:00:00 2001 From: Sean Anderson Date: Fri, 11 Feb 2022 12:26:37 -0500 Subject: crconf: Set SBINDIR and MANDIR The default values of these variables are not appropriate when using usrmerge. This fixes the following error: ERROR: crconf-git-r0 do_package: QA Issue: crconf: Files/directories were installed but not shipped in any package: /sbin/crconf Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. Signed-off-by: Sean Anderson --- recipes-extended/crconf/crconf_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-extended/crconf/crconf_git.bb b/recipes-extended/crconf/crconf_git.bb index 1727888a6..704c6ac73 100644 --- a/recipes-extended/crconf/crconf_git.bb +++ b/recipes-extended/crconf/crconf_git.bb @@ -3,7 +3,7 @@ SECTION = "base" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://Makefile;beginline=1;endline=5;md5=0f77fc44eb5911007ae4ac9f6736e111" -EXTRA_OEMAKE = "'CC=${CC}' 'HOSTCC=${CC}'" +EXTRA_OEMAKE = "'CC=${CC}' 'HOSTCC=${CC}' SBINDIR='${sbindir}' MANDIR='${mandir}'" SRC_URI = "git://git.code.sf.net/p/crconf/code;protocol=https;nobranch=1" SRCREV = "c2b9595d739a9515a86ff3b1980b5cfdfcc42d68" -- cgit v1.2.3-54-g00ecf From a47693173d7fe8bda1e7da1e419fac2ba6d26a41 Mon Sep 17 00:00:00 2001 From: Sean Anderson Date: Fri, 11 Feb 2022 12:28:52 -0500 Subject: crconf: Don't set FILES Documentation should be installed in the documentation package, not the main package. The latter two directories are already added to FILES by meta/conf/bitbake.conf. Signed-off-by: Sean Anderson --- recipes-extended/crconf/crconf_git.bb | 2 -- 1 file changed, 2 deletions(-) diff --git a/recipes-extended/crconf/crconf_git.bb b/recipes-extended/crconf/crconf_git.bb index 704c6ac73..305b47f56 100644 --- a/recipes-extended/crconf/crconf_git.bb +++ b/recipes-extended/crconf/crconf_git.bb @@ -13,5 +13,3 @@ S = "${WORKDIR}/git" do_install () { oe_runmake install DESTDIR=${D} } - -FILES:${PN} += "/share/man/* ${libdir}/* ${sbindir}/*" -- cgit v1.2.3-54-g00ecf