[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH] modules-test: ui-spice-app is not built as modu
From: |
Peter Maydell |
Subject: |
Re: [Qemu-devel] [PATCH] modules-test: ui-spice-app is not built as module |
Date: |
Fri, 23 Aug 2019 15:13:36 +0100 |
On Thu, 22 Aug 2019 at 18:42, Paolo Bonzini <address@hidden> wrote:
>
> $(call land, $(CONFIG_SPICE), $(CONFIG_GIO)) will never return "m" so
> ui-spice-app is always linked into QEMU.
>
> Signed-off-by: Paolo Bonzini <address@hidden>
> ---
> tests/modules-test.c | 3 ---
> 1 file changed, 3 deletions(-)
>
> diff --git a/tests/modules-test.c b/tests/modules-test.c
> index a8118e9..f9de3af 100644
> --- a/tests/modules-test.c
> +++ b/tests/modules-test.c
> @@ -53,9 +53,6 @@ int main(int argc, char *argv[])
> #ifdef CONFIG_SDL
> "ui-", "sdl",
> #endif
> -#if defined(CONFIG_SPICE) && defined(CONFIG_GIO)
> - "ui-", "spice-app",
> -#endif
> };
> int i;
I've applied this to master as a build fix for the moment, thanks.
We can properly build the module and revert this bit as the
longer-term fix.
thanks
-- PMM