From: aneejit1 Date: Sat, 19 Mar 2022 10:41:32 +0000 (+0000) Subject: Check for 'rst2man' misses installed 'rst2man.py' (#4728) X-Git-Tag: archive/raspbian/4.6.5+ds-1+rpi1~1^2~19^2~1^2~39 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=52cb3b2ec402b391e908cc14a01449b4d19021c0;p=gtk4.git Check for 'rst2man' misses installed 'rst2man.py' (#4728) By default, 'docutils' installs 'rst2man' as 'rst2man.py'. Amend the check for 'rst2man' to look for 'rst2man.py' as well if 'rst2man' is not found. --- diff --git a/docs/reference/gtk/meson.build b/docs/reference/gtk/meson.build index 441207c2b2..a7af607b91 100644 --- a/docs/reference/gtk/meson.build +++ b/docs/reference/gtk/meson.build @@ -57,7 +57,7 @@ if get_option('gtk_doc') ) endif -rst2man = find_program('rst2man', required: false) +rst2man = find_program('rst2man', 'rst2man.py', required: false) if get_option('man-pages') and not rst2man.found() error('No rst2man found, but man pages were explicitly enabled') endif