From patchwork Mon Sep 14 09:47:04 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Nosthoff X-Patchwork-Id: 1363474 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=busybox.net (client-ip=140.211.166.136; helo=silver.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=busybox.net Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=heine.tech header.i=@heine.tech header.a=rsa-sha256 header.s=dkim header.b=BlpuCWSm; dkim-atps=neutral Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4BqhPP4fTCz9sTM for ; Mon, 14 Sep 2020 19:48:09 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 96DEE20470; Mon, 14 Sep 2020 09:48:06 +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 no6CwGtyRYNI; Mon, 14 Sep 2020 09:47:58 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 703DD204B3; Mon, 14 Sep 2020 09:47:52 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 0F9DC1BF3C0 for ; Mon, 14 Sep 2020 09:47:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 09B5C86959 for ; Mon, 14 Sep 2020 09:47:51 +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 DG8LgZDlV3pY for ; Mon, 14 Sep 2020 09:47:49 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail.heine.tech (mail.heine.tech [195.201.24.99]) by whitealder.osuosl.org (Postfix) with ESMTPS id 8073A86912 for ; Mon, 14 Sep 2020 09:47:49 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id 73EBB1814B9; Mon, 14 Sep 2020 11:47:43 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=heine.tech; s=dkim; t=1600076863; h=from:subject:date:message-id:to:cc:mime-version: content-transfer-encoding; bh=JX8zSerQwe5tcdUS7U/GAaSwATUOfhdHvkqsj7MgJKs=; b=BlpuCWSm2D+funli54ffVivvNcbBtV02yD+3P644QzJZ6CDfgZ93CR2ZZLNc1/udOJQkw7 5UO3fhswjbG3S6GpCrHm8ed9tCPyIHDzDJam3YXySjSrWznkSMHiWsGsDpKEVYv1309Yuv IVKVf0t//3gFLR3iVNea3wG1k1XXrow= To: buildroot@buildroot.org Date: Mon, 14 Sep 2020 11:47:04 +0200 Message-Id: <20200914094703.2788070-1-buildroot@heine.tech> MIME-Version: 1.0 X-Last-TLS-Session-Version: TLSv1.3 Subject: [Buildroot] [PATCH] package/localedef: depend host build on python3 X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Michael Nosthoff via buildroot Reply-To: Michael Nosthoff Cc: Michael Nosthoff , Thomas Petazzoni Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" needed for parallel build. fixes: - http://lists.busybox.net/pipermail/buildroot/2020-September/291929.html Signed-off-by: Michael Nosthoff --- package/localedef/localedef.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/localedef/localedef.mk b/package/localedef/localedef.mk index e3c571241c..8eefb84a29 100644 --- a/package/localedef/localedef.mk +++ b/package/localedef/localedef.mk @@ -14,6 +14,7 @@ HOST_LOCALEDEF_DL_SUBDIR = glibc HOST_LOCALEDEF_DEPENDENCIES = \ $(BR2_MAKE_HOST_DEPENDENCY) \ + $(BR2_PYTHON3_HOST_DEPENDENCY) \ host-bison \ host-gawk