From 9e82570e73d6a2cf181825530f9f779af3bc7c52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Mon, 2 Oct 2017 13:19:21 +0200 Subject: [PATCH] meson: rename hwdb update target ninja -c build hwdb-update During the initial meson conversion, custom_target:s and run_target:s behaved the same, and the target name became a top-level command. Now custom_target:s require the subdir to be included, e.g. we have man/man target to build man pages, but run_target:s not. So I think this target got a name that is so generic because of the confusion caused by changing rules. Let's rename it. --- hwdb/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hwdb/meson.build b/hwdb/meson.build index 6fceff2b3b..ee206fd509 100644 --- a/hwdb/meson.build +++ b/hwdb/meson.build @@ -40,5 +40,5 @@ test('parse-hwdb', ############################################################ run_target( - 'update', + 'hwdb-update', command : [hwdb_update_sh, meson.current_source_dir()])