From patchwork Fri Nov 29 08:18:34 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Dawson X-Patchwork-Id: 295170 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 57CD42C0094 for ; Fri, 29 Nov 2013 19:18:47 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 475E525172; Fri, 29 Nov 2013 08:18:45 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id SVwy1nsoKPm5; Fri, 29 Nov 2013 08:18:42 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 9F54E25DE9; Fri, 29 Nov 2013 08:18:42 +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 C61801BFA35 for ; Fri, 29 Nov 2013 08:18:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id C1A638AB5A for ; Fri, 29 Nov 2013 08:18:40 +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 R1Qy6WZsZT+M for ; Fri, 29 Nov 2013 08:18:40 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wg0-f51.google.com (mail-wg0-f51.google.com [74.125.82.51]) by whitealder.osuosl.org (Postfix) with ESMTPS id F03E18AAC4 for ; Fri, 29 Nov 2013 08:18:39 +0000 (UTC) Received: by mail-wg0-f51.google.com with SMTP id b13so6195292wgh.30 for ; Fri, 29 Nov 2013 00:18:38 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id; bh=AIKXXSN6KMlhonCnQrsGkqRnyuF9k2TAu9JfNLGo0DE=; b=kbFJTFRpyEzZT/AM4H8q6JM73jvET+e8zbAOTWnov98mZ7nTmLDquehUy7d9zZT//B T/TT1bJL05j8mnuZyBgsyXg/Aolzm8qtkMXEGhJbWFgaNtSKi44QCoLTT9QvG5IQTyEx zhFWCFhSnL5zqqDyojRE0WLwI4r0AsvsV5gET7W0/2KetGR8rOl1kpD+d52bz/tXLlmW wG/Yams/qLAPsEIJXNuSekWFmfaqq+Q6rBALkdmZy9XCgrklVu0iEhInnJtGqk5O+XTn jN9fLlbd+GtQXprv0ndRKTqXxDjddghKr9tXvjMRojXWKxVnmYhwd8HTLGniphfcfUjI UyNQ== X-Received: by 10.180.189.80 with SMTP id gg16mr5735094wic.32.1385713118263; Fri, 29 Nov 2013 00:18:38 -0800 (PST) Received: from localhost.localdomain (host86-134-27-197.range86-134.btcentralplus.com. [86.134.27.197]) by mx.google.com with ESMTPSA id s2sm89969107wiy.7.2013.11.29.00.18.36 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 29 Nov 2013 00:18:37 -0800 (PST) From: spdawson@gmail.com To: buildroot@busybox.net Date: Fri, 29 Nov 2013 08:18:34 +0000 Message-Id: <1385713114-3847-1-git-send-email-spdawson@gmail.com> X-Mailer: git-send-email 1.8.3.2 Subject: [Buildroot] [PATCH] lua-ev: disable on avr32 and blackfin 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 From: Simon Dawson lua-ev is a reverse dependency of libev, but the architecture filtering is not propagated. Fixes autobuild failure such as the following. http://autobuild.buildroot.net/results/387/38704a4362ab6c3458c45603975b274937059fa9/ Signed-off-by: Simon Dawson --- package/lua-ev/Config.in | 1 + 1 file changed, 1 insertion(+) diff --git a/package/lua-ev/Config.in b/package/lua-ev/Config.in index 1e89c27..4f704ad 100644 --- a/package/lua-ev/Config.in +++ b/package/lua-ev/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_LUA_EV bool "lua-ev" select BR2_PACKAGE_LIBEV + depends on !(BR2_avr32 || BR2_bfin) # libev help Get access to the libev library from Lua.