Em Thu, 23 Feb 2023 18:44:39 +0200 Laurent Pinchart <laurent.pinchart@xxxxxxxxxxxxxxxx> escreveu: > From: Ariel D'Alessandro <ariel.dalessandro@xxxxxxxxxxxxx> > > +doxygen_install_dir = join_paths(get_option('datadir'), 'doc', > + '@0@'.format(meson.project_name())) > + > +doxygen_output = [] > +if get_option('doxygen-html') > + doxygen_output += 'html' > +endif > +if get_option('doxygen-man') > + doxygen_output += 'man' > +endif > + > +custom_target('doxygen', > + input : doxyfile, > + output : doxygen_output, > + command : [prog_doxygen, doxyfile], > + install : true, > + install_dir : doxygen_install_dir) This is not right. It makes man pages to be installed inside: /usr/share/doc/v4l-utils/man/man3 It should be, instead: usr/share/man/man3 I suspect you'll need a separate custom_target for man. Please fix it ASAP. Thanks, Mauro