From 7b8fed192d1a0410647dc40b8109177e90e31395 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org>
Date: Wed, 20 Sep 2023 14:58:01 +0200
Subject: [PATCH] Meson build system: do not fail if latexmk cannot be detected

---
 doc/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/meson.build b/doc/meson.build
index ba16e20a..b7919fe7 100644
--- a/doc/meson.build
+++ b/doc/meson.build
@@ -1,4 +1,4 @@
-latexmk_exe = find_program('latexmk', required : false)
+latexmk_exe = find_program('latexmk', required : false, disabler : true)
 
 # We have to set TEXINPUTS because the current directory is not the source
 # directory when latexmk is invoked (and using the -cd option in combination
-- 
GitLab