From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60876) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z8Txi-0006mT-B7 for qemu-devel@nongnu.org; Fri, 26 Jun 2015 09:46:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z8Txh-0001p7-IW for qemu-devel@nongnu.org; Fri, 26 Jun 2015 09:46:34 -0400 Received: from mx1.redhat.com ([209.132.183.28]:33256) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z8Txh-0001p0-CJ for qemu-devel@nongnu.org; Fri, 26 Jun 2015 09:46:33 -0400 Date: Fri, 26 Jun 2015 15:46:28 +0200 From: "Michael S. Tsirkin" Message-ID: <1435326248-24291-18-git-send-email-mst@redhat.com> References: <1435326248-24291-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1435326248-24291-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PULL 17/17] Fix glib_subprocess test List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Michael Tokarev , "Dr. David Alan Gilbert" , Gerd Hoffmann , Stefan Hajnoczi , Paolo Bonzini 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 Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 6fed07b..fe3440f 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 -- MST