[Qemu-devel] [PATCH 4/4] Makefile: qemu-ga: fix msi target error message

2015-08-27 Thread Michael Roth
'msi' target reports error if we attempt to use it when QEMU hasn't been ./configure'd to enable it. The parenthesis cause an interpreter error if we don't enclose the error in quotes. Reviewed-by: Marc-André Lureau Signed-off-by: Michael Roth --- Makefile | 2 +- 1 file changed, 1 insertion(+)

Re: [Qemu-devel] [PATCH 4/4] Makefile: qemu-ga: fix msi target error message

2015-08-27 Thread Marc-André Lureau
On Thu, Aug 27, 2015 at 12:21 AM, Michael Roth wrote: > + @echo "MSI build not configured or dependency resolution failed > (reconfigure with --enable-guest-agent-msi option)" Reviewed-by: Marc-André Lureau -- Marc-André Lureau

[Qemu-devel] [PATCH 4/4] Makefile: qemu-ga: fix msi target error message

2015-08-26 Thread Michael Roth
'msi' target reports error if we attempt to use it when QEMU hasn't been ./configure'd to enable it. The parenthesis cause an interpreter error if we don't enclose the error in quotes. Signed-off-by: Michael Roth --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ma