Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
subprojects: iniparser: Address meson run_command() warning
The `run_command()` invocations in the iniparser meson.build lacked the `check` parameter: ``` iniparser| WARNING: You should add the boolean check kwarg to the run_command call. iniparser| It currently defaults to false, iniparser| but it will default to true in future releases of meson. iniparser| See also: mesonbuild/meson#9300 ``` Add `check` and set it to true to make sure the build configuration only succeeds if these commands also succeed. Fixes: 1e04f44 ("use iniparser dependency for config file parsing") Change-Id: I97841398fc899e876b97e4e28e18cd8dd3b13222 Signed-off-by: Andrew Jeffery <[email protected]>
- Loading branch information