summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVicente Olivert Riera <Vincent.Riera@imgtec.com>2015-02-22 16:14:57 +0000
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-02-22 22:28:17 +0100
commitfdfbd27f3484923d9e1a3d6307a15e32b790068a (patch)
treef9b3b1ed0b8058e8833631de363d9684d33dfe39
parentd3c08a79aad60cce37c04f724f776e7c7de7df91 (diff)
downloadbuildroot-fdfbd27f3484923d9e1a3d6307a15e32b790068a.tar.gz
buildroot-fdfbd27f3484923d9e1a3d6307a15e32b790068a.zip
evtest: disable documentation
evtest uses asciidoc to generate documentation, but /usr/bin/asciidoc will try to use buildroot's host-python which doesn't have the required unicodedata. To avoid that, define ASCIIDOC as an empty string so the Makefile can't find the executable and skips the documentation generation. This is the same solution used in the evemu package. Otherwise it will fail with this message: make[1]: Entering directory `/br/output/build/evtest-1.32' /usr/bin/make all-am make[2]: Entering directory `/br/output/build/evtest-1.32' File "/usr/bin/asciidoc", line 95 except KeyError, k: return None Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r--package/evtest/evtest.mk5
1 files changed, 5 insertions, 0 deletions
diff --git a/package/evtest/evtest.mk b/package/evtest/evtest.mk
index 42a79999c7..1573f52460 100644
--- a/package/evtest/evtest.mk
+++ b/package/evtest/evtest.mk
@@ -13,4 +13,9 @@ EVTEST_DEPENDENCIES = host-pkgconf
# needed because source package contains no generated files
EVTEST_AUTORECONF = YES
+# asciidoc used to generate manpages, which we don't need, and if it's
+# present on the build host, it ends getting called with our host-python
+# which doesn't have all the needed modules enabled, breaking the build
+EVTEST_CONF_ENV = ac_cv_path_ASCIIDOC=""
+
$(eval $(autotools-package))
OpenPOWER on IntegriCloud