[Libosinfo] [osinfo-db-tools PATCH 1/2] meson: respect mandir option

2019-12-07 Thread Roman Bogorodskiy
There's an osinfo_db_tools_mandir setting that respects meson's 'mandir' option. Use that for tools man installation dir instead of building a path based on osinfo_db_tools_datadir. Signed-off-by: Roman Bogorodskiy --- tools/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[Libosinfo] [osinfo-db-tools PATCH 2/2] meson: fix GETTEXT_PACKAGE formatting

2019-12-07 Thread Roman Bogorodskiy
Properly specify placeholder value to get it replaced. Signed-off-by: Roman Bogorodskiy --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 663b6da..96eb9ae 100644 --- a/meson.build +++ b/meson.build @@ -76,7 +76,7 @@ osinfo_db_tool

[Libosinfo] [osinfo-db-tools PATCH] meson: tests: make python3 really optional

2019-12-07 Thread Roman Bogorodskiy
As python3 is supposed to be optional, pass 'required: false' to python.find_installation(), otherwise when it's missing, build fails with: Program python found: NO tests/meson.build:12:0: ERROR: python3 not found Signed-off-by: Roman Bogorodskiy --- tests/meson.build | 2 +- 1 file changed