summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes-recipe/qemu.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes-recipe/qemu.bbclass b/meta/classes-recipe/qemu.bbclass
index 874b15127c..dbb5ee0b66 100644
--- a/meta/classes-recipe/qemu.bbclass
+++ b/meta/classes-recipe/qemu.bbclass
@@ -34,7 +34,7 @@ def qemu_wrapper_cmdline(data, rootfs_path, library_paths):
34 if qemu_binary == "qemu-allarch": 34 if qemu_binary == "qemu-allarch":
35 qemu_binary = "qemuwrapper" 35 qemu_binary = "qemuwrapper"
36 36
37 qemu_options = data.getVar("QEMU_OPTIONS") 37 qemu_options = data.getVar("QEMU_OPTIONS") or ""
38 38
39 return "PSEUDO_UNLOAD=1 " + qemu_binary + " " + qemu_options + " -L " + rootfs_path\ 39 return "PSEUDO_UNLOAD=1 " + qemu_binary + " " + qemu_options + " -L " + rootfs_path\
40 + " -E LD_LIBRARY_PATH=" + ":".join(library_paths) + " " 40 + " -E LD_LIBRARY_PATH=" + ":".join(library_paths) + " "