From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54558) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YyLnI-0001vt-So for qemu-devel@nongnu.org; Fri, 29 May 2015 11:01:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YyLnE-0003GA-Dy for qemu-devel@nongnu.org; Fri, 29 May 2015 11:01:56 -0400 Received: from mx1.redhat.com ([209.132.183.28]:33976) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YyLnE-0003G4-8y for qemu-devel@nongnu.org; Fri, 29 May 2015 11:01:52 -0400 From: "Dr. David Alan Gilbert (git)" Date: Fri, 29 May 2015 16:01:47 +0100 Message-Id: <1432911708-22845-2-git-send-email-dgilbert@redhat.com> In-Reply-To: <1432911708-22845-1-git-send-email-dgilbert@redhat.com> References: <1432911708-22845-1-git-send-email-dgilbert@redhat.com> Subject: [Qemu-devel] [PATCH 1/2] Fix glib_subprocess test List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, armbru@redhat.com, mst@redhat.com From: "Dr. David Alan Gilbert" A typo means that the tests dependent on glib with subprocess support are never run. Fixes: 9d41401b90fa10b335d2e739149d36437cfbf622 Signed-off-by: Dr. David Alan Gilbert --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 9852aef..24ee0a4 100755 --- a/configure +++ b/configure @@ -4776,7 +4776,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 -- 2.4.1