X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=subprojects%2Fgst-docs%2Fmeson.build;h=e8fcd6fcef9187f3df54aba2be035ae661ad9d8d;hb=f0b045a69bb0b36515b84e3b64df9dc30c8f1e1a;hp=821d3b96c52ccb3a1a68b14b4920cddc60c613e8;hpb=8dfab0b08c86989e5c911db472b7677f60c1b978;p=platform%2Fupstream%2Fgstreamer.git diff --git a/subprojects/gst-docs/meson.build b/subprojects/gst-docs/meson.build index 821d3b9..e8fcd6f 100644 --- a/subprojects/gst-docs/meson.build +++ b/subprojects/gst-docs/meson.build @@ -1,5 +1,5 @@ project('GStreamer manuals and tutorials', 'c', - version: '1.19.2.1', + version: '1.20.0', meson_version : '>= 0.59') hotdoc_p = find_program('hotdoc') @@ -9,7 +9,7 @@ if not hotdoc_p.found() endif hotdoc_req = '>= 0.12.2' -hotdoc_version = run_command(hotdoc_p, '--version').stdout() +hotdoc_version = run_command(hotdoc_p, '--version', check: false).stdout() if not hotdoc_version.version_compare(hotdoc_req) error('Hotdoc version @0@ not found, got @1@'.format(hotdoc_req, hotdoc_version)) endif @@ -49,6 +49,7 @@ with open(fname, 'r') as f: python3, '-c', read_file_contents, fname, + check: false, ) if cmdres.returncode() == 0 built_subprojects = cmdres.stdout().strip()