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.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2017-10-02 13:19:21 +02:00
parent cd4826e0e6
commit 9e82570e73
1 changed files with 1 additions and 1 deletions

View File

@ -40,5 +40,5 @@ test('parse-hwdb',
############################################################
run_target(
'update',
'hwdb-update',
command : [hwdb_update_sh, meson.current_source_dir()])