diff options
author | Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> | 2013-05-12 09:15:52 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-05-12 21:28:10 +0200 |
commit | 92cd8a527373bf0c059f806761a851d2364d0246 (patch) | |
tree | 03e9762f70dd953d1bce0112a14e62e7ff246d29 | |
parent | e5726eb4986f33a1c6af276973efeaa35980097c (diff) | |
download | buildroot-novena-92cd8a527373bf0c059f806761a851d2364d0246.tar.gz buildroot-novena-92cd8a527373bf0c059f806761a851d2364d0246.zip |
czmq: disable asciidoc documentation generation
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) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/czmq/czmq.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/czmq/czmq.mk b/package/czmq/czmq.mk index 2b34654fa..d63fb7847 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 |