From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52131) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bNKBU-0001ot-HS for qemu-devel@nongnu.org; Wed, 13 Jul 2016 09:26:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bNKBS-00039K-65 for qemu-devel@nongnu.org; Wed, 13 Jul 2016 09:26:40 -0400 Received: from mail-wm0-x244.google.com ([2a00:1450:400c:c09::244]:33688) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bNKBR-00039G-Va for qemu-devel@nongnu.org; Wed, 13 Jul 2016 09:26:38 -0400 Received: by mail-wm0-x244.google.com with SMTP id o80so5888888wme.0 for ; Wed, 13 Jul 2016 06:26:37 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Wed, 13 Jul 2016 15:26:21 +0200 Message-Id: <1468416392-120170-4-git-send-email-pbonzini@redhat.com> In-Reply-To: <1468416392-120170-1-git-send-email-pbonzini@redhat.com> References: <1468416392-120170-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PULL 03/14] 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: qemu-devel@nongnu.org Cc: Sean Bruno From: Sean Bruno 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. Reviewed-by: Eric Blake Reviewed-by: Fam Zheng Signed-off-by: Sean Bruno Message-Id: <20160614180734.8782-1-sbruno@freebsd.org> Signed-off-by: Paolo Bonzini --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c054bc6..4570637 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 -- 1.8.3.1