From patchwork Fri Apr 25 20:34:11 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 342998 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id BC911140128 for ; Sat, 26 Apr 2014 06:34:20 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id BCC918B25C; Fri, 25 Apr 2014 20:34:18 +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 Xe9Sg8eOY5Ex; Fri, 25 Apr 2014 20:34:18 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 273788B347; Fri, 25 Apr 2014 20:34:18 +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 ADE561C286E for ; Fri, 25 Apr 2014 20:34:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id A9C2287EE3 for ; Fri, 25 Apr 2014 20:34:14 +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 BWd98Hshyp-G for ; Fri, 25 Apr 2014 20:34:14 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (top.free-electrons.com [176.31.233.9]) by hemlock.osuosl.org (Postfix) with ESMTP id 1CC53885F2 for ; Fri, 25 Apr 2014 20:34:14 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id 680CD91E; Fri, 25 Apr 2014 22:34:14 +0200 (CEST) Received: from localhost (AToulouse-651-1-5-84.w92-149.abo.wanadoo.fr [92.149.60.84]) by mail.free-electrons.com (Postfix) with ESMTPSA id 289EC15C for ; Fri, 25 Apr 2014 22:34:14 +0200 (CEST) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Fri, 25 Apr 2014 22:34:11 +0200 Message-Id: <1398458051-5251-2-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.9.2 In-Reply-To: <1398458051-5251-1-git-send-email-thomas.petazzoni@free-electrons.com> References: <1398458051-5251-1-git-send-email-thomas.petazzoni@free-electrons.com> Subject: [Buildroot] [PATCH 2/2] ltp-testsuite: does not build on NIOS II 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 Fixes: http://autobuild.buildroot.org/results/1ae/1aef491ec016ddd601446164c5b97ce480e755e6/ Signed-off-by: Thomas Petazzoni --- package/ltp-testsuite/Config.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package/ltp-testsuite/Config.in b/package/ltp-testsuite/Config.in index 44592fc..0e71677 100644 --- a/package/ltp-testsuite/Config.in +++ b/package/ltp-testsuite/Config.in @@ -8,6 +8,8 @@ config BR2_PACKAGE_LTP_TESTSUITE depends on BR2_INET_IPV6 depends on BR2_LARGEFILE depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC + # does not build, cachectl.h issue + depends on !BR2_nios2 help The Linux Test Project provides a huge testsuite for Linux. @@ -21,5 +23,6 @@ config BR2_PACKAGE_LTP_TESTSUITE http://ltp.sourceforge.net/ comment "ltp-testsuite needs a toolchain w/ IPv6, RPC, largefile, threads" + depends on !BR2_nios2 depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INET_IPV6 || \ !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_NATIVE_RPC