Open
Description
This is not necessarily a bug.
Just my two cents here about whether this should be discussed. I am generating a installer for Windows. I need to get the list of installed files to put them in a wix toolset database (this is a xml with all files to be used by the installer as input).
I want to install the files in DESTDIR as a first step, using set DESTDIR=%cd%/build/staging
and doing ninja -C build install
and later gather staged files and put them in a msi installer through a run_target('create_msi_installer')
. These are the correct files to gather, and not the ones in the build directory actually. But meson introspect ignores DESTDIR.
- Should DESTDIR be ignored by meson introspect (this is what it does, so the installation directory is not correct).