summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core
diff options
context:
space:
mode:
authorPhil Blundell <pb@pbcl.net>2013-04-25 15:34:21 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-22 17:13:56 +0100
commitc1fc2ce5541a598812c8fd38ddef3e3dd6a3d5a0 (patch)
treed849c6ada0d2b89724fdf12a63712112f145613a /meta/recipes-core
parent902564c0445e6dd2fc7bdcbe458f8b8ef4490cb1 (diff)
downloadpoky-c1fc2ce5541a598812c8fd38ddef3e3dd6a3d5a0.tar.gz
glib: Add --disable-man to configure arguments
Without this, glib will probe for the existence of xsltproc and use that to decide whether or not it wants to generate manpages. This has two consequences, neither of them good: a) the result of the build will vary depending on whether xsltproc happens to be installed in either the native sysroot or the host environment; and b) if xsltproc does happen to be installed but docbook-xsl isn't, the build will fail with "I/O error" messages. (From OE-Core master rev: b2e2c6e1a20ea4c53dea04992bb1b38890a959dd) (From OE-Core rev: 03a1a14839064af6cb85bd534450f09d5b6b8f55) Signed-off-by: Phil Blundell <philb@gnu.org> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r--meta/recipes-core/glib-2.0/glib.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/glib-2.0/glib.inc b/meta/recipes-core/glib-2.0/glib.inc
index 42c34c3200..d5fa0a30d5 100644
--- a/meta/recipes-core/glib-2.0/glib.inc
+++ b/meta/recipes-core/glib-2.0/glib.inc
@@ -25,7 +25,7 @@ inherit autotools gettext gtk-doc pkgconfig ptest
25 25
26S = "${WORKDIR}/glib-${PV}" 26S = "${WORKDIR}/glib-${PV}"
27 27
28CORECONF = "--disable-dtrace --disable-fam --disable-libelf --disable-systemtap" 28CORECONF = "--disable-dtrace --disable-fam --disable-libelf --disable-systemtap --disable-man"
29 29
30PTEST_CONF = "${@base_contains('DISTRO_FEATURES', 'ptest', '--enable-modular-tests', '--disable-modular-tests', d)}" 30PTEST_CONF = "${@base_contains('DISTRO_FEATURES', 'ptest', '--enable-modular-tests', '--disable-modular-tests', d)}"
31EXTRA_OECONF = "--enable-included-printf=no ${CORECONF} ${PTEST_CONF}" 31EXTRA_OECONF = "--enable-included-printf=no ${CORECONF} ${PTEST_CONF}"