From patchwork Mon Dec 30 17:57:53 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 305820 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id B94062C00DA for ; Tue, 31 Dec 2013 04:58:14 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 1BC5F8EFE6; Mon, 30 Dec 2013 17:58:14 +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 BQhFkpk5-pRo; Mon, 30 Dec 2013 17:58:12 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id AE99C8DE06; Mon, 30 Dec 2013 17:58:12 +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 B62241BF962 for ; Mon, 30 Dec 2013 17:58:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id B00098DC46 for ; Mon, 30 Dec 2013 17:58:11 +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 LkQLgdMrAMFk for ; Mon, 30 Dec 2013 17:58:11 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from blu0-omc3-s24.blu0.hotmail.com (blu0-omc3-s24.blu0.hotmail.com [65.55.116.99]) by whitealder.osuosl.org (Postfix) with ESMTP id EA0858DE06 for ; Mon, 30 Dec 2013 17:58:10 +0000 (UTC) Received: from BLU0-SMTP115 ([65.55.116.73]) by blu0-omc3-s24.blu0.hotmail.com with Microsoft SMTPSVC(6.0.3790.4675); Mon, 30 Dec 2013 09:58:10 -0800 X-TMN: [GRSyxVx3hzkIhAUYOaSgst76FutizRJ4] X-Originating-Email: [berndkuhls@hotmail.com] Message-ID: Received: from fli4l.lan.fli4l ([87.146.211.124]) by BLU0-SMTP115.phx.gbl over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Mon, 30 Dec 2013 09:58:08 -0800 Received: from fli4lbuild.lan.fli4l ([192.168.1.50]:34827) by fli4l.lan.fli4l with esmtpsa (TLSv1:DHE-RSA-AES256-SHA:256) (Exim 4.80.1) (envelope-from ) id 1Vxh6M-0003bG-1J; Mon, 30 Dec 2013 18:58:06 +0100 From: Bernd Kuhls To: buildroot@busybox.net Date: Mon, 30 Dec 2013 18:57:53 +0100 X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1388426274-17641-1-git-send-email-berndkuhls@hotmail.com> References: <1388426274-17641-1-git-send-email-berndkuhls@hotmail.com> X-OriginalArrivalTime: 30 Dec 2013 17:58:08.0883 (UTC) FILETIME=[B2B37430:01CF0588] MIME-Version: 1.0 Cc: Bernd Kuhls Subject: [Buildroot] [PATCH 2/3] python: depend on libiconv if appropriate 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: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Signed-off-by: Bernd Kuhls --- package/python/python.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/python/python.mk b/package/python/python.mk index bc42e8f..bd60112 100644 --- a/package/python/python.mk +++ b/package/python/python.mk @@ -47,7 +47,7 @@ HOST_PYTHON_MAKE_ENV = \ # MAKE1 has shown to workaround the problem. HOST_PYTHON_MAKE = $(MAKE1) -PYTHON_DEPENDENCIES = host-python libffi +PYTHON_DEPENDENCIES = host-python libffi $(if $(BR2_PACKAGE_LIBICONV),libiconv) $(if $(BR2_NEEDS_GETTEXT),gettext) HOST_PYTHON_DEPENDENCIES = host-expat host-zlib