From 6d80aba49e20f5915545dcc4116f5e68eab8c57f Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Tue, 20 Dec 2022 19:01:04 +0200 Subject: [PATCH] Revert "[doc] Remove redundant check for gtkdoc-scan" This reverts commit 0409363f77cab416b34aab66d647a3d61f46d9d8. Broke lots of bots. --- docs/meson.build | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/meson.build b/docs/meson.build index b34bdbcbe..1fd75cf56 100644 --- a/docs/meson.build +++ b/docs/meson.build @@ -1,3 +1,8 @@ +if not find_program('gtkdoc-scan', required: get_option('docs')).found() + message('Not building documentation as gtk-doc was not found') + subdir_done() +endif + conf.set('HAVE_GTK_DOC', 1) gnome = import('gnome')