From: Nicolas Dufresne Date: Tue, 4 Jun 2019 19:30:43 +0000 (-0400) Subject: cross: Fix cross compilation meson error X-Git-Tag: 1.19.3~481^2~202 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bb9c37dcf0ef83dd568bdb289864600e795b5f3e;p=platform%2Fupstream%2Fgstreamer.git cross: Fix cross compilation meson error The doc is not currently built in cross-compilation, but we still had some meson code that eneded up being called and failed. --- diff --git a/meson.build b/meson.build index 3831544..22551d2 100644 --- a/meson.build +++ b/meson.build @@ -103,7 +103,7 @@ foreach sp : subprojects message('Created symlink to ' + project_name) endif - if build_infos.has_key('build-hotdoc', default: false) + if not meson.is_cross_build() and build_infos.has_key('build-hotdoc', default: false) if plugins.length() > 0 plugins_doc_caches += [subproj.get_variable('plugins_doc_dep')] endif