From patchwork Sun Sep 12 03:48:13 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Frysinger X-Patchwork-Id: 64536 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from bombadil.infradead.org (bombadil.infradead.org [18.85.46.34]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id C47C0B6F14 for ; Sun, 12 Sep 2010 13:49:20 +1000 (EST) Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.72 #1 (Red Hat Linux)) id 1OudX6-0005Ib-I2; Sun, 12 Sep 2010 03:47:12 +0000 Received: from smtp.gentoo.org ([140.211.166.183]) by bombadil.infradead.org with esmtps (Exim 4.72 #1 (Red Hat Linux)) id 1OudX0-0005IF-5Z for linux-mtd@lists.infradead.org; Sun, 12 Sep 2010 03:47:06 +0000 Received: from localhost.localdomain (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id E64EA1B4084 for ; Sun, 12 Sep 2010 03:46:59 +0000 (UTC) From: Mike Frysinger To: linux-mtd@lists.infradead.org Subject: [PATCH] old ubi-utils: drop -Werror Date: Sat, 11 Sep 2010 23:48:13 -0400 Message-Id: <1284263293-31064-1-git-send-email-vapier@gentoo.org> X-Mailer: git-send-email 1.7.2 X-CRM114-Version: 20090807-BlameThorstenAndJenny ( TRE 0.7.6 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20100911_234706_335086_4E52C127 X-CRM114-Status: UNSURE ( 9.79 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -2.3 (--) X-Spam-Report: SpamAssassin version 3.3.1 on bombadil.infradead.org summary: Content analysis details: (-2.3 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 T_RP_MATCHES_RCVD Envelope sender domain matches handover relay domain -2.3 RCVD_IN_DNSWL_MED RBL: Sender listed at http://www.dnswl.org/, medium trust [140.211.166.183 listed in list.dnswl.org] X-BeenThere: linux-mtd@lists.infradead.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-mtd-bounces@lists.infradead.org Errors-To: linux-mtd-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org Considering this is marked as "old" which is synonymous with "dead", having the dir cause build failures because of warnings makes no sense. So drop the -Werror usage. Signed-off-by: Mike Frysinger --- ubi-utils/old-utils/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ubi-utils/old-utils/Makefile b/ubi-utils/old-utils/Makefile index acdb31a..6df7c06 100644 --- a/ubi-utils/old-utils/Makefile +++ b/ubi-utils/old-utils/Makefile @@ -4,7 +4,7 @@ KERNELHDR := ../../include -CFLAGS ?= -O2 -g -Werror +CFLAGS ?= -O2 -g CPPFLAGS := -I./inc -I./src -I$(KERNELHDR) \ -std=gnu99 -DPACKAGE_VERSION=\"1.0\" $(CPPFLAGS)