diff options
author | Ross Burton <ross.burton@intel.com> | 2018-01-05 13:06:08 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-06 10:13:39 +0000 |
commit | 5d221ff20dffb2e119047f931e270b5a0ebf2ae1 (patch) | |
tree | d0dba711016a89053e1deff000b463c1eb6685fe | |
parent | 038d7270aef0cccf87d50a117160c58261beb9b9 (diff) | |
download | openembedded-core-5d221ff20dffb2e119047f931e270b5a0ebf2ae1.tar.gz openembedded-core-5d221ff20dffb2e119047f931e270b5a0ebf2ae1.tar.bz2 openembedded-core-5d221ff20dffb2e119047f931e270b5a0ebf2ae1.zip |
gst-validate: disable gtk-doc API documentation
When the gtk-doc API documentation is enabled (via the api-documentation DISTRO_FEATURE, typically) this recipe fails to build:
WORKDIR/build/docs/validate/gst-validate-scan: line 117:
WORKDIR/build/docs/validate/.libs/lt-gst-validate-scan:
No such file or directory
Forcibly disable the gtk-doc for now.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gst-validate_1.12.4.bb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-validate_1.12.4.bb b/meta/recipes-multimedia/gstreamer/gst-validate_1.12.4.bb index f662467dfb..d2dbb41845 100644 --- a/meta/recipes-multimedia/gstreamer/gst-validate_1.12.4.bb +++ b/meta/recipes-multimedia/gstreamer/gst-validate_1.12.4.bb @@ -16,3 +16,8 @@ RRECOMMENDS_${PN} = "git" FILES_${PN} += "${datadir}/gstreamer-1.0/* ${libdir}/gst-validate-launcher/* ${libdir}/gstreamer-1.0/*" inherit pkgconfig gettext autotools gobject-introspection gtk-doc + +# With gtk-doc enabled this recipe fails to build, so forcibly disable it: +# WORKDIR/build/docs/validate/gst-validate-scan: line 117: +# WORKDIR/build/docs/validate/.libs/lt-gst-validate-scan: No such file or directory +GTKDOC_ENABLED = "False" |