From acebacc2b65f3da4bbd0227829d4e06111ca372c Mon Sep 17 00:00:00 2001 From: Eberhard Beilharz Date: Mon, 14 Jul 2025 17:08:45 +0200 Subject: [PATCH] maint(core): explain (wrong) meson warning Build-bot: skip Test-bot: skip --- core/tests/unit/ldml/keyboards/meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/tests/unit/ldml/keyboards/meson.build b/core/tests/unit/ldml/keyboards/meson.build index 8e9539a3dd..0fe3980681 100644 --- a/core/tests/unit/ldml/keyboards/meson.build +++ b/core/tests/unit/ldml/keyboards/meson.build @@ -65,6 +65,7 @@ kmc_cmd = [node, '--enable-source-maps', kmc_root] # Build all keyboards in output folder foreach kbd : tests_needing_copy + # This will output a (wrong) deprecation warning with meson < 1.5 - see #13250 configure_file(input: kbd + '.xml', output: kbd + '.xml', copy: true) endforeach @@ -77,6 +78,7 @@ foreach kbd : tests_with_testdata endforeach foreach kbd : tests_from_cldr + # This will output a (wrong) deprecation warning with meson < 1.5 - see #13250 configure_file(input: ldml_data / kbd + '.xml', output: kbd + '.xml', copy: true) configure_file( command: kmc_cmd + ['build', 'ldml-test-data', '@INPUT@', '--out-file', '@OUTPUT@'],