From 196e739cf28456cd8b7989377c3df6a5fe468dd7 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Tue, 20 Dec 2022 18:41:01 +0200 Subject: [PATCH] =?UTF-8?q?[doc]=20Don=E2=80=99t=20skip=20building=20on=20?= =?UTF-8?q?Windows?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We don’t enable building docs by default, so if one asked explicitly for it we shouldn’t be overriding that. --- docs/meson.build | 5 ----- 1 file changed, 5 deletions(-) diff --git a/docs/meson.build b/docs/meson.build index 19094d8f7..1fd75cf56 100644 --- a/docs/meson.build +++ b/docs/meson.build @@ -1,8 +1,3 @@ -if build_machine.system() == 'windows' - message('Skipping gtk-doc while building on Windows') - subdir_done() -endif - if not find_program('gtkdoc-scan', required: get_option('docs')).found() message('Not building documentation as gtk-doc was not found') subdir_done()