From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54241) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bKTgj-0007Du-GF for qemu-devel@nongnu.org; Tue, 05 Jul 2016 12:59:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bKTgg-00052y-AO for qemu-devel@nongnu.org; Tue, 05 Jul 2016 12:59:09 -0400 Received: from mail-wm0-x243.google.com ([2a00:1450:400c:c09::243]:34391) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bKTgg-00052X-2W for qemu-devel@nongnu.org; Tue, 05 Jul 2016 12:59:06 -0400 Received: by mail-wm0-x243.google.com with SMTP id 187so30111978wmz.1 for ; Tue, 05 Jul 2016 09:59:05 -0700 (PDT) Sender: Paolo Bonzini References: <20160614180734.8782-1-sbruno@freebsd.org> From: Paolo Bonzini Message-ID: <5f1246cd-8cc7-d15d-d855-a480a9eac27e@redhat.com> Date: Tue, 5 Jul 2016 18:59:02 +0200 MIME-Version: 1.0 In-Reply-To: <20160614180734.8782-1-sbruno@freebsd.org> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2] 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 , qemu-devel@nongnu.org On 14/06/2016 20:07, 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 seen on FreeBSD. > > 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 > Queued, thanks. Paolo