From patchwork Wed Oct 31 17:45:16 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luiz Capitulino X-Patchwork-Id: 195967 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 3F3A02C0081 for ; Thu, 1 Nov 2012 04:46:53 +1100 (EST) Received: from localhost ([::1]:57059 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TTcNP-0000zu-FF for incoming@patchwork.ozlabs.org; Wed, 31 Oct 2012 13:46:51 -0400 Received: from eggs.gnu.org ([208.118.235.92]:37398) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TTcNF-0000wr-8k for qemu-devel@nongnu.org; Wed, 31 Oct 2012 13:46:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TTcND-00071C-5B for qemu-devel@nongnu.org; Wed, 31 Oct 2012 13:46:41 -0400 Received: from mx1.redhat.com ([209.132.183.28]:35694) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TTcNC-00070n-TY for qemu-devel@nongnu.org; Wed, 31 Oct 2012 13:46:39 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q9VHiQLg014736 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 31 Oct 2012 13:44:27 -0400 Received: from localhost (ovpn-113-84.phx2.redhat.com [10.3.113.84]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q9VHiPtE001440; Wed, 31 Oct 2012 13:44:26 -0400 From: Luiz Capitulino To: qemu-devel@nongnu.org Date: Wed, 31 Oct 2012 15:45:16 -0200 Message-Id: <1351705520-24589-2-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1351705520-24589-1-git-send-email-lcapitulino@redhat.com> References: <1351705520-24589-1-git-send-email-lcapitulino@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Cc: mdroth@linux.vnet.ibm.com Subject: [Qemu-devel] [PATCH 1/5] configure: link qemu-ga.exe in default make target X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Avoids having to type "make qemu-ga.exe" after build is complete and also cleanups qemu-ga.exe in make clean. Signed-off-by: Luiz Capitulino Reviewed-by: Michael Roth --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 3685020..d15bf5b 100755 --- a/configure +++ b/configure @@ -3079,7 +3079,7 @@ if test "$softmmu" = yes ; then virtfs=no fi fi - if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then + if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" -o "$mingw32" = "yes" ] ; then if [ "$guest_agent" = "yes" ]; then tools="qemu-ga\$(EXESUF) $tools" fi