]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tools: rename helper to match target name
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Wed, 27 Jan 2021 13:04:14 +0000 (14:04 +0100)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Thu, 28 Jan 2021 08:55:35 +0000 (09:55 +0100)
The target is update-syscall-tables, so let's call the script
update-syscall-tables.sh to reduce the cognitive overhead when
trying to find the right file.

meson.build
src/basic/meson.build
tools/update-syscall-tables.sh [moved from tools/syscall-table-update.sh with 100% similarity]

index 179c3174c88a51eec4a4f930454d5042291a6b18..0af0cce8b85827da7ae89d9d8f3257a80f048afd 100644 (file)
@@ -1589,16 +1589,16 @@ conf.set10('ENABLE_EFI', have)
 
 ############################################################
 
-update_hwdb_sh = find_program('tools/update-hwdb.sh')
-update_hwdb_autosuspend_sh = find_program('tools/update-hwdb-autosuspend.sh')
+generate_gperfs = find_program('tools/generate-gperfs.py')
 make_autosuspend_rules_py = find_program('tools/make-autosuspend-rules.py')
 make_directive_index_py = find_program('tools/make-directive-index.py')
 make_man_index_py = find_program('tools/make-man-index.py')
-syscall_table_update_sh = find_program('tools/syscall-table-update.sh')
-xml_helper_py = find_program('tools/xml_helper.py')
-update_dbus_docs_py = find_program('tools/update-dbus-docs.py')
 meson_apply_m4 = find_program('tools/meson-apply-m4.sh')
-generate_gperfs = find_program('tools/generate-gperfs.py')
+update_dbus_docs_py = find_program('tools/update-dbus-docs.py')
+update_hwdb_sh = find_program('tools/update-hwdb.sh')
+update_hwdb_autosuspend_sh = find_program('tools/update-hwdb-autosuspend.sh')
+update_syscall_tables_sh = find_program('tools/update-syscall-tables.sh')
+xml_helper_py = find_program('tools/xml_helper.py')
 
 #####################################################################
 
index d6ef5eb28b403f52c94d59db01ba6944ff1b5f7c..b3040f5cfe1db6bda38e100d592bb43ae7681edb 100644 (file)
@@ -359,7 +359,7 @@ arch_list = [
 
 run_target(
         'update-syscall-tables',
-        command : [syscall_table_update_sh, meson.current_source_dir()] + arch_list)
+        command : [update_syscall_tables_sh, meson.current_source_dir()] + arch_list)
 
 syscall_list_txt = files('syscall-list.txt')