From patchwork Sun May 12 19:25:01 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnout Vandecappelle X-Patchwork-Id: 243213 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 C8B2A2C00A3 for ; Mon, 13 May 2013 05:25:12 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 96AFA274D2; Sun, 12 May 2013 19:25:11 +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 XUTYdi-cQA1r; Sun, 12 May 2013 19:25:08 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id AD11127B70; Sun, 12 May 2013 19:25:08 +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 61C168F753 for ; Sun, 12 May 2013 19:25:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id A12D38A93A for ; Sun, 12 May 2013 19:25:07 +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 CTLICmQYaQAu for ; Sun, 12 May 2013 19:25:06 +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 9FFCD8AC32 for ; Sun, 12 May 2013 19:25:06 +0000 (UTC) Received: from [172.16.2.6] (helo=vandecaa-laptop) by viper.mind.be with esmtp (Exim 4.69) (envelope-from ) id 1Ubbsk-0007xI-Ov; Sun, 12 May 2013 21:24:33 +0200 Received: from arnout by vandecaa-laptop with local (Exim 4.80) (envelope-from ) id 1UbbtF-0001MK-4g; Sun, 12 May 2013 21:25:01 +0200 From: "Arnout Vandecappelle (Essensium/Mind)" To: buildroot@busybox.net Date: Sun, 12 May 2013 21:25:01 +0200 Message-Id: <1368386701-5188-1-git-send-email-arnout@mind.be> X-Mailer: git-send-email 1.8.2.1 Subject: [Buildroot] [PATCH] filemq: 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)" filemq 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/filemq/filemq.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/filemq/filemq.mk b/package/filemq/filemq.mk index 0ea7a9d..c715292 100644 --- a/package/filemq/filemq.mk +++ b/package/filemq/filemq.mk @@ -8,6 +8,7 @@ FILEMQ_VERSION = 8fac5140dd FILEMQ_SITE = git://github.com/zeromq/filemq.git FILEMQ_AUTORECONF = YES +FILEMQ_CONF_ENV = fmq_have_asciidoc=no FILEMQ_INSTALL_STAGING = YES FILEMQ_DEPENDENCIES = czmq openssl zeromq FILEMQ_LICENSE = LGPLv3+ with exceptions