1From 4ee244d0824e772ab35abb0f9df5e8088e16fc5d Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Mon, 26 Apr 2021 19:30:40 +0200
4Subject: [PATCH] doxygen/meson.build: remove dependency on doxygen binary
5
6New meson refuses to complete confuguration if doxygen is absent
7even if this target is never actually run. As we never run it,
8let's remove it, until upstream and/or meson figure out that it's
9optional and should be treated as such.
10
11Upstream-Status: Inappropriate [needs proper upstream fix]
12Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
13---
14 doxygen/meson.build | 2 --
15 1 file changed, 2 deletions(-)
16
17diff --git a/doxygen/meson.build b/doxygen/meson.build
18index afc0e49..df55c83 100644
19--- a/doxygen/meson.build
20+++ b/doxygen/meson.build
21@@ -6,5 +6,3 @@ doxygen_conf = configure_file(
22   configuration : cdata,
23 )
24
25-run_target('doxygen',
26-  command : ['doxygen', doxygen_conf])
27