From 34fc41bc0757dba49e41ff4b923b9c9470a122ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Fri, 29 Mar 2019 00:41:43 +0100 Subject: [PATCH] qt5-translation.bbclass: remove True option in getVar calls MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Müller --- classes/qemu-ext.bbclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/classes/qemu-ext.bbclass b/classes/qemu-ext.bbclass index 5f4a4bb2..f016281d 100644 --- a/classes/qemu-ext.bbclass +++ b/classes/qemu-ext.bbclass @@ -13,9 +13,9 @@ DEPENDS += "qemu-native" # an absolute path. def qemu_run_binary_local(data, rootfs_path, binary): - libdir = rootfs_path + data.getVar("libdir", False) - base_libdir = rootfs_path + data.getVar("base_libdir", False) - extra_libdir = data.getVar("QEMU_EXTRA_LIBDIR", False) + libdir = rootfs_path + data.getVar("libdir") + base_libdir = rootfs_path + data.getVar("base_libdir") + extra_libdir = data.getVar("QEMU_EXTRA_LIBDIR") if extra_libdir: return qemu_wrapper_cmdline(data, rootfs_path, [libdir, base_libdir, extra_libdir]) + binary else: