From patchwork Wed Jul 22 15:04:11 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Clayton Shotwell X-Patchwork-Id: 498588 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 443A91402D6 for ; Thu, 23 Jul 2015 01:04:21 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 55DE832FD9; Wed, 22 Jul 2015 15:04:20 +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 t-iPZFZ+4OvW; Wed, 22 Jul 2015 15:04:16 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 49DDE32FA9; Wed, 22 Jul 2015 15:04:16 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 838451C0DB0 for ; Wed, 22 Jul 2015 15:04:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 7BAE932FC3 for ; Wed, 22 Jul 2015 15:04:14 +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 mbWMmug5hmJn for ; Wed, 22 Jul 2015 15:04:13 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from ch3vs02.rockwellcollins.com (ch3vs02.rockwellcollins.com [205.175.226.29]) by silver.osuosl.org (Postfix) with ESMTPS id 30B4A32FA5 for ; Wed, 22 Jul 2015 15:04:13 +0000 (UTC) Received: from ofwch3n02.rockwellcollins.com (HELO ciulimr01.rockwellcollins.com) ([205.175.226.14]) by ch3vs02.rockwellcollins.com with ESMTP; 22 Jul 2015 10:04:12 -0500 X-Received: from thehammer.rockwellcollins.com (unknown [192.168.141.197]) by ciulimr01.rockwellcollins.com (Postfix) with ESMTP id 956786028E; Wed, 22 Jul 2015 10:04:12 -0500 (CDT) From: Clayton Shotwell To: buildroot@buildroot.org Date: Wed, 22 Jul 2015 10:04:11 -0500 Message-Id: <1437577451-47533-1-git-send-email-clayton.shotwell@rockwellcollins.com> X-Mailer: git-send-email 1.9.1 Cc: Clayton Shotwell Subject: [Buildroot] [PATCH] setools: Disable on Blackfin and NIOS II X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 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" The setools package is not currently building on either the NIOS II or the Blackfin architectures. Disabling for now. Fixes: http://autobuild.buildroot.net/results/2ee84c0dc027912e059ca4ae518d6f11fd8317a7/ http://autobuild.buildroot.net/results/401e4c48f4d865b2722f284f1038e25c5d420f43/ http://autobuild.buildroot.net/results/e67ef47ea9ff4cbb012d374b3b290fb7bddf7ef3/ Signed-off-by: Clayton Shotwell --- package/setools/Config.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/setools/Config.in b/package/setools/Config.in index 7c85af6..2e69283 100644 --- a/package/setools/Config.in +++ b/package/setools/Config.in @@ -7,6 +7,7 @@ config BR2_PACKAGE_SETOOLS depends on BR2_TOOLCHAIN_HAS_THREADS depends on !BR2_STATIC_LIBS depends on BR2_INSTALL_LIBSTDCPP + depends on !BR2_nios2 && !BR2_bfin help SETools is an open source project designed to facilitate SELinux policy analysis. The primary tools are: @@ -23,3 +24,4 @@ config BR2_PACKAGE_SETOOLS comment "setools needs a toolchain w/ threads, C++, dynamic library" depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS \ || !BR2_INSTALL_LIBSTDCPP + depends on !BR2_nios2 && !BR2_bfin