From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46131) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCFnz-00014N-NR for qemu-devel@nongnu.org; Sun, 12 Jun 2016 20:32:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bCFnv-0001Pw-IE for qemu-devel@nongnu.org; Sun, 12 Jun 2016 20:32:38 -0400 Received: from mx1.redhat.com ([209.132.183.28]:52421) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCFnv-0001Ps-CT for qemu-devel@nongnu.org; Sun, 12 Jun 2016 20:32:35 -0400 Date: Mon, 13 Jun 2016 08:32:28 +0800 From: Fam Zheng Message-ID: <20160613003228.GA14489@ad.usersys.redhat.com> References: <1465769996-46245-1-git-send-email-sbruno@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1465769996-46245-1-git-send-email-sbruno@freebsd.org> Subject: Re: [Qemu-devel] [PATCH] Use "-s" instead of "--quiet" to resolve non-fatal build error on FreeBSD. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Sean Bruno Cc: qemu-devel@nongnu.org On Sun, 06/12 15:19, Sean Bruno wrote: > The --quiet argument is not available on all operating systems. Use -s > instead to match the rest of the Makefile uses. This fixes a non-fatal > error see on FreeBSD. s/see/seen (Perhaps can be fixed when applying.) Reviewed-by: Fam Zheng > > Signed-off-by: Sean Bruno > --- > Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Makefile b/Makefile > index ed4032a..a7a356a 100644 > --- a/Makefile > +++ b/Makefile > @@ -185,7 +185,7 @@ qemu-version.h: FORCE > printf '""\n'; \ > fi; \ > fi) > $@.tmp) > - $(call quiet-command, cmp --quiet $@ $@.tmp || mv $@.tmp $@) > + $(call quiet-command, cmp -s $@ $@.tmp || mv $@.tmp $@) > > config-host.h: config-host.h-timestamp > config-host.h-timestamp: config-host.mak > -- > 2.8.1 > >