From patchwork Mon May 20 12:42:25 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markos Chandras X-Patchwork-Id: 245017 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id BACE12C00A3 for ; Mon, 20 May 2013 22:42:43 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 02B258C613; Mon, 20 May 2013 12:42:42 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id xKCHeFvHZ+vV; Mon, 20 May 2013 12:42:39 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 079128BF15; Mon, 20 May 2013 12:42:39 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id CAE758F76F for ; Mon, 20 May 2013 12:42:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 061668BE2D for ; Mon, 20 May 2013 12:42:38 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id aiyjR3zWGozF for ; Mon, 20 May 2013 12:42:36 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from multi.imgtec.com (multi.imgtec.com [194.200.65.239]) by whitealder.osuosl.org (Postfix) with ESMTPS id 77FB48BF15 for ; Mon, 20 May 2013 12:42:35 +0000 (UTC) From: Markos Chandras To: Date: Mon, 20 May 2013 13:42:25 +0100 Message-ID: <1369053745-25578-1-git-send-email-markos.chandras@gmail.com> X-Mailer: git-send-email 1.8.2.1 MIME-Version: 1.0 X-SEF-Processed: 7_3_0_01181__2013_05_20_13_42_29 Subject: [Buildroot] [PATCH] ed: Fix quiet building X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net From: Markos Chandras The configure script is a custom one, and '-q' is not supported. It fixes the following problem when building using 'make -s' configure: Unrecognized option: "-q"; use --help for usage. Signed-off-by: Markos Chandras --- package/ed/ed.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/ed/ed.mk b/package/ed/ed.mk index 2bb8e0e..d29239f 100644 --- a/package/ed/ed.mk +++ b/package/ed/ed.mk @@ -11,4 +11,8 @@ ED_CONF_OPT = CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" \ ED_LICENSE = GPLv3+ ED_LICENSE_FILES = COPYING +# The configure script is not a standard autotools one +# and the '-q' option is not supported. +QUIET= + $(eval $(autotools-package))