From patchwork Sun May 12 19:15:52 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnout Vandecappelle X-Patchwork-Id: 243211 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 96F3C2C0084 for ; Mon, 13 May 2013 05:16:01 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id A68C120102; Sun, 12 May 2013 19:15:59 +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 AHR7TsQyQLlf; Sun, 12 May 2013 19:15:58 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 273A0267D9; Sun, 12 May 2013 19:15:58 +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 0D7868F753 for ; Sun, 12 May 2013 19:16:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 40C1B87FF1 for ; Sun, 12 May 2013 19:15:57 +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 darUyDSbc7VW for ; Sun, 12 May 2013 19:15:56 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from viper.mind.be (132.79-246-81.adsl-static.isp.belgacom.be [81.246.79.132]) by whitealder.osuosl.org (Postfix) with ESMTPS id 5B20C87AC9 for ; Sun, 12 May 2013 19:15:56 +0000 (UTC) Received: from [172.16.2.6] (helo=vandecaa-laptop) by viper.mind.be with esmtp (Exim 4.69) (envelope-from ) id 1Ubbju-0007jt-PC; Sun, 12 May 2013 21:15:23 +0200 Received: from arnout by vandecaa-laptop with local (Exim 4.80) (envelope-from ) id 1UbbkO-00074l-2q; Sun, 12 May 2013 21:15:52 +0200 From: "Arnout Vandecappelle (Essensium/Mind)" To: buildroot@busybox.net Date: Sun, 12 May 2013 21:15:52 +0200 Message-Id: <1368386152-27165-1-git-send-email-arnout@mind.be> X-Mailer: git-send-email 1.8.2.1 Subject: [Buildroot] [PATCH] czmq: disable asciidoc documentation generation 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 From: "Arnout Vandecappelle (Essensium/Mind)" czmq uses asciidoc for its documentation. asciidoc uses python and import the unicodedata module, which is not in host-python. So disable asciidoc entirely. This doesn't get hit by the autobuilders because they don't have asciidoc installed in their chroot. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- package/czmq/czmq.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/czmq/czmq.mk b/package/czmq/czmq.mk index 2b34654..d63fb78 100644 --- a/package/czmq/czmq.mk +++ b/package/czmq/czmq.mk @@ -14,6 +14,10 @@ CZMQ_DEPENDENCIES = zeromq CZMQ_LICENSE = LGPLv3+ with exceptions CZMQ_LICENSE_FILES = COPYING COPYING.LESSER +# asciidoc is a python script that imports unicodedata, which is not in +# host-python, so disable asciidoc entirely. +CZMQ_CONF_ENV = ac_cv_prog_czmq_have_asciidoc=no + define CZMQ_CREATE_CONFIG_DIR mkdir -p $(@D)/config endef