From d09f50438f5d6bda37413e583776f177c3ccd343 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Sommer?= Date: Thu, 16 Apr 2026 07:29:20 +0200 Subject: [PATCH] lshw: Fix binmerge MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In case $sbindir = $bindir we have to pass this setting to make. Signed-off-by: Jörg Sommer Signed-off-by: Khem Raj --- meta-oe/recipes-devtools/lshw/lshw_02.20.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-oe/recipes-devtools/lshw/lshw_02.20.bb b/meta-oe/recipes-devtools/lshw/lshw_02.20.bb index 95e2084255..2f1367341a 100644 --- a/meta-oe/recipes-devtools/lshw/lshw_02.20.bb +++ b/meta-oe/recipes-devtools/lshw/lshw_02.20.bb @@ -32,11 +32,11 @@ EXTRA_OEMAKE = "${PACKAGECONFIG_CONFARGS} RPM_OPT_FLAGS='${CFLAGS}'" do_compile() { # build core only - don't ship gui - oe_runmake -C src core + oe_runmake -C src SBINDIR=${sbindir} core } do_install() { - oe_runmake install DESTDIR=${D} + oe_runmake install DESTDIR=${D} SBINDIR=${sbindir} } BBCLASSEXTEND = "native"