diff options
author | Tom Zanussi <tom.zanussi@intel.com> | 2012-04-13 14:56:03 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-14 09:33:47 +0100 |
commit | ffc9073db1ef03cc0ed44aeca5a23a0aaef554ea (patch) | |
tree | 307876752a27cad299aa6eca4d6daa0d7d7ce752 | |
parent | 3e3f774b8df4c54c277f5e981f4b83dd67ff49a3 (diff) | |
download | poky-ffc9073db1ef03cc0ed44aeca5a23a0aaef554ea.tar.gz |
systemtap: disable document generation by default
Building the systemtap documentation adds significantly to the build
time, so disable it by default.
(From OE-Core rev: e37391a949fb0a6edf87eb910e93a17caf309119)
Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-kernel/systemtap/systemtap_git.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-kernel/systemtap/systemtap_git.bb b/meta/recipes-kernel/systemtap/systemtap_git.bb index 1d2c9f35e0..91bccd1fae 100644 --- a/meta/recipes-kernel/systemtap/systemtap_git.bb +++ b/meta/recipes-kernel/systemtap/systemtap_git.bb | |||
@@ -20,6 +20,10 @@ EXTRA_OECONF += "--with-libelf=${STAGING_DIR_TARGET} --without-rpm \ | |||
20 | ac_cv_file__usr_include_avahi_client=no \ | 20 | ac_cv_file__usr_include_avahi_client=no \ |
21 | ac_cv_file__usr_include_avahi_common=no " | 21 | ac_cv_file__usr_include_avahi_common=no " |
22 | 22 | ||
23 | STAP_DOCS ?= "--disable-docs --disable-publican --disable-refdocs" | ||
24 | |||
25 | EXTRA_OECONF += "${STAP_DOCS} " | ||
26 | |||
23 | inherit autotools gettext | 27 | inherit autotools gettext |
24 | 28 | ||
25 | BBCLASSEXTEND = "native nativesdk" | 29 | BBCLASSEXTEND = "native nativesdk" |