From patchwork Tue Jun 7 21:37:17 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Antonio Ospite X-Patchwork-Id: 631832 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [103.22.144.68]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3rPQv366Gzz9sp7 for ; Wed, 8 Jun 2016 08:18:23 +1000 (AEST) Received: from ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 3rPQv35QWHzDqdP for ; Wed, 8 Jun 2016 08:18:23 +1000 (AEST) X-Original-To: petitboot@lists.ozlabs.org Delivered-To: petitboot@lists.ozlabs.org X-Greylist: delayed 2437 seconds by postgrey-1.35 at bilbo; Wed, 08 Jun 2016 08:18:16 AEST Received: from ao2.it (ao2.it [92.243.12.208]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 3rPQtw1PR1zDqHm for ; Wed, 8 Jun 2016 08:18:16 +1000 (AEST) Received: from ao2 by ao2.it with local (Exim 4.84_2) (envelope-from ) id 1bAOgc-0004Z5-2t; Tue, 07 Jun 2016 23:37:22 +0200 From: Antonio Ospite To: Geoff Levand Subject: [PATCH 3/4] configure.ac: enable silent build rules by default if available Date: Tue, 7 Jun 2016 23:37:17 +0200 Message-Id: <1465335438-17503-4-git-send-email-ao2@ao2.it> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1465335438-17503-1-git-send-email-ao2@ao2.it> References: <1465335438-17503-1-git-send-email-ao2@ao2.it> X-Face: z*RaLf`X<@C75u6Ig9}{oW$H; 1_\2t5)({*|jhM/Vb; ]yA5\I~93>J<_`<4)A{':UrE X-BeenThere: petitboot@lists.ozlabs.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Petitboot bootloader development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: petitboot@lists.ozlabs.org MIME-Version: 1.0 Errors-To: petitboot-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Petitboot" Signed-off-by: Antonio Ospite Acked-by: Stewart Smith --- configure.ac | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configure.ac b/configure.ac index 78dcf83..7418e02 100644 --- a/configure.ac +++ b/configure.ac @@ -37,6 +37,11 @@ AC_SUBST(LIB_VERSION) AM_CONFIG_HEADER(twin_def.h) +# use pretty build output with automake >= 1.11 +m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])], + [AM_DEFAULT_VERBOSITY=1 + AC_SUBST(AM_DEFAULT_VERBOSITY)]) + # Check for progs AC_PROG_CC AC_PROG_LIBTOOL