summaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-01-16 17:21:34 +0100
committerGitHub <noreply@github.com>2021-01-16 17:21:34 +0100
commit2b5a1402f6b18d6759b57d109b6030c570decf98 (patch)
tree3e6ec6f2c955863afe70cb42f99b734b9fd2824e /meson.build
parentMerge pull request #18264 from ssahani/net3 (diff)
parentsrc/basic: generate missing syscall headers programatically (diff)
downloadsystemd-2b5a1402f6b18d6759b57d109b6030c570decf98.tar.xz
systemd-2b5a1402f6b18d6759b57d109b6030c570decf98.zip
Merge pull request #18263 from keszybz/syscalls-auto
Generate missing syscalls headers programatically
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build21
1 files changed, 10 insertions, 11 deletions
diff --git a/meson.build b/meson.build
index 99d203d145..b400de8319 100644
--- a/meson.build
+++ b/meson.build
@@ -1626,6 +1626,16 @@ includes = include_directories('src/basic',
add_project_arguments('-include', 'config.h', language : 'c')
generate_gperfs = find_program('tools/generate-gperfs.py')
+autosuspend_update_sh = find_program('tools/autosuspend-update.sh')
+hwdb_update_sh = find_program('tools/hwdb-update.sh')
+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')
+
+############################################################
subdir('po')
subdir('catalog')
@@ -1694,17 +1704,6 @@ install_libsystemd_static = static_library(
############################################################
-autosuspend_update_sh = find_program('tools/autosuspend-update.sh')
-hwdb_update_sh = find_program('tools/hwdb-update.sh')
-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_names_update_sh = find_program('tools/syscall-names-update.sh')
-xml_helper_py = find_program('tools/xml_helper.py')
-update_dbus_docs_py = find_program('tools/update-dbus-docs.py')
-
-############################################################
-
# binaries that have --help and are intended for use by humans,
# usually, but not always, installed in /bin.
public_programs = []