1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-12-31 17:17:43 +03:00

meson: rename target to update-hwdb

The goal is to have all "update-*" targets named uniformly so that
tab-completion works. The script is renamed to match.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2021-01-27 09:17:26 +01:00
parent e3c368f63c
commit 4095cff07e
4 changed files with 4 additions and 4 deletions

View File

@ -41,7 +41,7 @@ available functionality:
symbols of `libsystemd.so` and `libudev.so` with the list of man pages. Symbols symbols of `libsystemd.so` and `libudev.so` with the list of man pages. Symbols
lacking documentation are highlighted. lacking documentation are highlighted.
7. Use `meson compile -C build hwdb-update` to automatically download and import the 7. Use `meson compile -C build update-hwdb` to automatically download and import the
PCI, USB and OUI databases into hwdb. PCI, USB and OUI databases into hwdb.
8. Use `meson compile -C build update-man-rules` to update the meson rules for 8. Use `meson compile -C build update-man-rules` to update the meson rules for

View File

@ -66,8 +66,8 @@ endif
############################################################ ############################################################
run_target( run_target(
'hwdb-update', 'update-hwdb',
command : [hwdb_update_sh, meson.current_source_dir()]) command : [update_hwdb_sh, meson.current_source_dir()])
run_target( run_target(
'autosuspend-update', 'autosuspend-update',

View File

@ -1590,7 +1590,7 @@ conf.set10('ENABLE_EFI', have)
############################################################ ############################################################
autosuspend_update_sh = find_program('tools/autosuspend-update.sh') autosuspend_update_sh = find_program('tools/autosuspend-update.sh')
hwdb_update_sh = find_program('tools/hwdb-update.sh') update_hwdb_sh = find_program('tools/update-hwdb.sh')
make_autosuspend_rules_py = find_program('tools/make-autosuspend-rules.py') make_autosuspend_rules_py = find_program('tools/make-autosuspend-rules.py')
make_directive_index_py = find_program('tools/make-directive-index.py') make_directive_index_py = find_program('tools/make-directive-index.py')
make_man_index_py = find_program('tools/make-man-index.py') make_man_index_py = find_program('tools/make-man-index.py')