From patchwork Tue Feb 28 20:13:02 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marcus Hoffmann X-Patchwork-Id: 733808 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]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3vXqX24vlhz9ryQ for ; Wed, 1 Mar 2017 07:13:22 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id BCBFE307ED; Tue, 28 Feb 2017 20:13:18 +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 1UZRAXG1LGC2; Tue, 28 Feb 2017 20:13:17 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 3D1D0303D7; Tue, 28 Feb 2017 20:13:17 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 57B521C156A for ; Tue, 28 Feb 2017 20:13:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 4E19D89BC0 for ; Tue, 28 Feb 2017 20:13:16 +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 xOy3Tk7-a9he for ; Tue, 28 Feb 2017 20:13:15 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from ms-10.1blu.de (ms-10.1blu.de [178.254.4.101]) by hemlock.osuosl.org (Postfix) with ESMTPS id ECA0789B82 for ; Tue, 28 Feb 2017 20:13:14 +0000 (UTC) Received: from [80.153.115.6] (helo=dandelion.fritz.box) by ms-10.1blu.de with esmtpa (Exim 4.86_2) (envelope-from ) id 1cio92-0004sn-8h; Tue, 28 Feb 2017 21:13:12 +0100 From: Marcus Hoffmann To: buildroot@buildroot.org Date: Tue, 28 Feb 2017 21:13:02 +0100 Message-Id: <20170228201302.12168-1-m.hoffmann@cartelsol.com> X-Mailer: git-send-email 2.9.3 X-Con-Id: 239684 X-Con-U: 0-mhoffmann X-Originating-IP: 80.153.115.6 Cc: Marcus Hoffmann Subject: [Buildroot] [PATCH 1/1] classpath: enable on sparc and sparc64. 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" GNU classpath builds fine on sparc and sparc64 architectures. So we allow building it there to be consistent with the naming of BR2_PACKAGE_CLASSPATH_ARCH_SUPPORTS. Signed-off-by: Marcus Hoffmann --- package/classpath/Config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/classpath/Config.in b/package/classpath/Config.in index c49ff7a..8051523 100644 --- a/package/classpath/Config.in +++ b/package/classpath/Config.in @@ -3,7 +3,7 @@ config BR2_PACKAGE_CLASSPATH_ARCH_SUPPORTS default y if BR2_arm || BR2_armeb || BR2_i386 || BR2_m68k \ || BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el \ || BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le \ - || BR2_sh || BR2_x86_64 + || BR2_sparc || BR2_sparc64 || BR2_sh || BR2_x86_64 config BR2_PACKAGE_CLASSPATH bool "classpath"