From: Dr. David Alan Gilbert Date: Wed, 24 Jun 2015 09:45:42 +0000 (+0100) Subject: Fix glib_subprocess test X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d46f7c9e648d8098ac73b36834ac81237b8c2c2d;p=qemu.git Fix glib_subprocess test A typo means that the tests dependent on glib with subprocess support are never run. Fixes: 9d41401b90fa10b335d2e739149d36437cfbf622 Signed-off-by: Dr. David Alan Gilbert Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- diff --git a/configure b/configure index 6fed07b5e2..fe3440f349 100755 --- a/configure +++ b/configure @@ -4822,7 +4822,7 @@ if test "$bluez" = "yes" ; then echo "CONFIG_BLUEZ=y" >> $config_host_mak echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak fi -if test "glib_subprocess" = "yes" ; then +if test "$glib_subprocess" = "yes" ; then echo "CONFIG_HAS_GLIB_SUBPROCESS_TESTS=y" >> $config_host_mak fi echo "GLIB_CFLAGS=$glib_cflags" >> $config_host_mak