doc: make doxygen build from any directory
In the autotools build, it only built in-tree, from cwd = doc/ and resolving doc/../lib/libalpm In the meson build, this accidentally worked if cwd = pacman/builddir/ and resolved to builddir/../lib/libalpm/ But... this should always have been configured with the actual path to the inputs. So, we will now proceed to do so. Fixes building man3 if your out of tree builddir doesn't happen to be a direct subdirectory of the source root. Signed-off-by: Eli Schwartz <eschwartz@archlinux.org> Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
parent
ccdd1e3fd9
commit
a023565ed3
2 changed files with 3 additions and 2 deletions
|
@ -117,8 +117,8 @@ WARN_LOGFILE =
|
|||
#---------------------------------------------------------------------------
|
||||
# Configuration options related to the input files
|
||||
#---------------------------------------------------------------------------
|
||||
INPUT = ../lib/libalpm/alpm.h \
|
||||
../lib/libalpm/alpm_list.h
|
||||
INPUT = @INPUT_DIRECTORY@/../lib/libalpm/alpm.h \
|
||||
@INPUT_DIRECTORY@/../lib/libalpm/alpm_list.h
|
||||
INPUT_ENCODING = UTF-8
|
||||
FILE_PATTERNS =
|
||||
RECURSIVE = NO
|
||||
|
|
|
@ -135,6 +135,7 @@ meson.add_install_script(MESON_MAKE_SYMLINK,
|
|||
doxygen = find_program('doxygen', required : get_option('doxygen'))
|
||||
if doxygen.found() and not get_option('doxygen').disabled()
|
||||
doxyconf = configuration_data()
|
||||
doxyconf.set('INPUT_DIRECTORY', meson.current_source_dir())
|
||||
doxyconf.set('OUTPUT_DIRECTORY', meson.current_build_dir())
|
||||
doxyfile = configure_file(
|
||||
input : 'Doxyfile.in',
|
||||
|
|
Loading…
Add table
Reference in a new issue