]> Git Repo - qemu.git/commitdiff
meson: Fix chardev-baum.so name
authorBruce Rogers <[email protected]>
Mon, 24 Aug 2020 15:52:36 +0000 (09:52 -0600)
committerPaolo Bonzini <[email protected]>
Thu, 27 Aug 2020 16:52:30 +0000 (18:52 +0200)
Somehow in the conversion to meson, the module named chardev-baum got
renamed to chardev-brlapi. Change it back.

Signed-off-by: Bruce Rogers <[email protected]>
Reviewed-by: Marc-AndrĂ© Lureau <[email protected]>
Signed-off-by: Paolo Bonzini <[email protected]>
chardev/meson.build

index a46a6237be7d8a18022ea34b47c59faaaa67da3b..7726837e344203671599a31d4ffa99551dcb3c0c 100644 (file)
@@ -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 }
This page took 0.025966 seconds and 4 git commands to generate.