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:26:52 +0100 |
commit | e37391a949fb0a6edf87eb910e93a17caf309119 (patch) | |
tree | 72950b9b157bb249b5e1c577115d0fe5484cfaf7 /meta | |
parent | 6ef7112e339bb5c03dee862bc56c10fdf677be78 (diff) | |
download | openembedded-core-e37391a949fb0a6edf87eb910e93a17caf309119.tar.gz openembedded-core-e37391a949fb0a6edf87eb910e93a17caf309119.tar.bz2 openembedded-core-e37391a949fb0a6edf87eb910e93a17caf309119.zip |
systemtap: disable document generation by default
Building the systemtap documentation adds significantly to the build
time, so disable it by default.
Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-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 \ ac_cv_file__usr_include_avahi_client=no \ ac_cv_file__usr_include_avahi_common=no " +STAP_DOCS ?= "--disable-docs --disable-publican --disable-refdocs" + +EXTRA_OECONF += "${STAP_DOCS} " + inherit autotools gettext BBCLASSEXTEND = "native nativesdk" |