From patchwork Mon Apr 16 21:12:38 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Korsgaard X-Patchwork-Id: 152998 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 8C1E7B6FFA for ; Tue, 17 Apr 2012 07:13:12 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 6DE0C100DF9; Mon, 16 Apr 2012 21:13:10 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id fiAoth7xofDZ; Mon, 16 Apr 2012 21:13:06 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 7F24B100335; Mon, 16 Apr 2012 21:13:06 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 295178F75B for ; Mon, 16 Apr 2012 21:13:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 22CAFA0269 for ; Mon, 16 Apr 2012 21:13:05 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5e5UgDJQnb1d for ; Mon, 16 Apr 2012 21:13:04 +0000 (UTC) Received: from busybox.osuosl.org (busybox.osuosl.org [140.211.167.224]) by hemlock.osuosl.org (Postfix) with ESMTP id 6B35FA0080 for ; Mon, 16 Apr 2012 21:13:04 +0000 (UTC) Received: by busybox.osuosl.org (Postfix, from userid 4021) id 5EFF996AED; Mon, 16 Apr 2012 21:13:04 +0000 (UTC) From: Peter Korsgaard To: buildroot@busybox.net Date: Mon, 16 Apr 2012 23:12:38 +0200 X-Git-Refname: refs/heads/master X-Git-Oldrev: 5d8af3747afb10094886e282f416fb0221cb1350 X-Git-Newrev: e530970c28ac1341613cc7a3605960e0373731b6 X-Patchwork-Hint: ignore Message-Id: <20120416211304.5EFF996AED@busybox.osuosl.org> Subject: [Buildroot] [git commit] libhid: don't build with -Werror 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: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net commit: http://git.buildroot.net/buildroot/commit/?id=e530970c28ac1341613cc7a3605960e0373731b6 branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master Signed-off-by: Peter Korsgaard --- package/libhid/libhid.mk | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/package/libhid/libhid.mk b/package/libhid/libhid.mk index 7730af8..8ad9ac1 100644 --- a/package/libhid/libhid.mk +++ b/package/libhid/libhid.mk @@ -12,6 +12,10 @@ LIBHID_INSTALL_STAGING = YES # configure runs libusb-config for cflags/ldflags. Ensure it picks up # the target version LIBHID_CONF_ENV = PATH=$(STAGING_DIR)/usr/bin:$(TARGET_PATH) -LIBHID_CONF_OPT = --disable-swig --without-doxygen --disable-package-config +LIBHID_CONF_OPT = \ + --disable-swig \ + --disable-werror \ + --without-doxygen \ + --disable-package-config $(eval $(call AUTOTARGETS))