From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:49738) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TTwzs-0000iD-Ct for qemu-devel@nongnu.org; Thu, 01 Nov 2012 11:47:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TTwzp-0005qL-Na for qemu-devel@nongnu.org; Thu, 01 Nov 2012 11:47:56 -0400 Received: from mail-oa0-f45.google.com ([209.85.219.45]:35938) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TTwzp-0005qE-IG for qemu-devel@nongnu.org; Thu, 01 Nov 2012 11:47:53 -0400 Received: by mail-oa0-f45.google.com with SMTP id i18so2441432oag.4 for ; Thu, 01 Nov 2012 08:47:53 -0700 (PDT) Sender: fluxion Date: Thu, 1 Nov 2012 10:47:49 -0500 From: Michael Roth Message-ID: <20121101154749.GI16157@illuin> References: <1351705520-24589-1-git-send-email-lcapitulino@redhat.com> <1351705520-24589-2-git-send-email-lcapitulino@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1351705520-24589-2-git-send-email-lcapitulino@redhat.com> Subject: Re: [Qemu-devel] [PATCH 1/5] configure: link qemu-ga.exe in default make target List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Luiz Capitulino Cc: qemu-devel@nongnu.org On Wed, Oct 31, 2012 at 03:45:16PM -0200, Luiz Capitulino wrote: > 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 > -- > 1.7.12.315.g682ce8b > >