From: Zbigniew Jędrzejewski-Szmek Date: Mon, 2 Oct 2017 11:19:21 +0000 (+0200) Subject: meson: rename hwdb update target X-Git-Tag: v235~38^2~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9e82570e73d6a2cf181825530f9f779af3bc7c52;p=thirdparty%2Fsystemd.git 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. --- diff --git a/hwdb/meson.build b/hwdb/meson.build index 6fceff2b3b3..ee206fd509e 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()])