From: Bruce Rogers Date: Mon, 24 Aug 2020 15:52:36 +0000 (-0600) Subject: meson: Fix chardev-baum.so name X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=48e33de58f2d22cf7d30d3854cd0364fd809983d;p=qemu.git meson: Fix chardev-baum.so name Somehow in the conversion to meson, the module named chardev-baum got renamed to chardev-brlapi. Change it back. Signed-off-by: Bruce Rogers Reviewed-by: Marc-André Lureau Signed-off-by: Paolo Bonzini --- diff --git a/chardev/meson.build b/chardev/meson.build index a46a6237be..7726837e34 100644 --- a/chardev/meson.build +++ b/chardev/meson.build @@ -39,7 +39,7 @@ chardev_modules = {} if config_host.has_key('CONFIG_BRLAPI') and sdl.found() module_ss = ss.source_set() module_ss.add(when: [sdl, brlapi], if_true: files('baum.c')) - chardev_modules += { 'brlapi': module_ss } + chardev_modules += { 'baum': module_ss } endif modules += { 'chardev': chardev_modules }