From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55204) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCDjj-0002id-75 for qemu-devel@nongnu.org; Sun, 12 Jun 2016 18:20:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bCDjf-0003Mv-IP for qemu-devel@nongnu.org; Sun, 12 Jun 2016 18:20:06 -0400 Received: from ignoranthack.me ([199.102.79.106]:65250 helo=mail.ignoranthack.me) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCDjf-0003Mq-Ct for qemu-devel@nongnu.org; Sun, 12 Jun 2016 18:20:03 -0400 From: Sean Bruno Date: Sun, 12 Jun 2016 15:19:56 -0700 Message-Id: <1465769996-46245-1-git-send-email-sbruno@freebsd.org> Subject: [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: qemu-devel@nongnu.org Cc: 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 see 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 -- 2.8.1