From: Romain Naour Date: Mon, 6 Apr 2020 14:21:59 +0000 (+0200) Subject: package/qemu: disable SDL2 for the host variant X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=44e5da60b712a8472da8d1fd976f6505cf8d24f3;p=buildroot.git package/qemu: disable SDL2 for the host variant There is no host variant for SDL2 library in Buildroot. So the qemu build system will try to detect automatically the external SDL2 libraries installed on the host. $ ldd output/host/bin/qemu-system-aarch64 [...] libSDL2-2.0.so.0 => /lib64/libSDL2-2.0.so.0 Disable explicitely sdl2 options (named sdl) to improve the build reproducibility. Signed-off-by: Romain Naour Signed-off-by: Yann E. MORIN --- diff --git a/package/qemu/qemu.mk b/package/qemu/qemu.mk index 06841a56d0..712491a208 100644 --- a/package/qemu/qemu.mk +++ b/package/qemu/qemu.mk @@ -305,6 +305,7 @@ define HOST_QEMU_CONFIGURE_CMDS --python=$(HOST_DIR)/bin/python3 \ --disable-bzip2 \ --disable-libssh \ + --disable-sdl \ --disable-vnc-jpeg \ --disable-vnc-png \ --disable-vnc-sasl \