mirror of
https://github.com/systemd/systemd
synced 2025-10-05 16:03:15 +02:00
meson: drop remaining target names
Most of those were dropped in 7d247d3cb8
. I left
behind the few cases where the 'output' name was different from the target name.
But we actually don't need those either, so get rid of those. (And one case
where I missed the name argument.)
No functional change, except that e.g. 'ninja -C build update-man-rules-impl'
doesn't work, but I hope nobody was using that.
This commit is contained in:
@@ -217,7 +217,6 @@ configure_file(
|
|||||||
############################################################
|
############################################################
|
||||||
|
|
||||||
update_dbus_docs = custom_target(
|
update_dbus_docs = custom_target(
|
||||||
'update-dbus-docs-impl',
|
|
||||||
output : 'update-dbus-docs',
|
output : 'update-dbus-docs',
|
||||||
command : [update_dbus_docs_py, '--build-dir', meson.project_build_root(), '@INPUT@'],
|
command : [update_dbus_docs_py, '--build-dir', meson.project_build_root(), '@INPUT@'],
|
||||||
input : dbus_docs,
|
input : dbus_docs,
|
||||||
@@ -237,7 +236,6 @@ if conf.get('BUILD_MODE_DEVELOPER') == 1
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
update_man_rules = custom_target(
|
update_man_rules = custom_target(
|
||||||
'update-man-rules-impl',
|
|
||||||
output : 'update-man-rules',
|
output : 'update-man-rules',
|
||||||
command : [update_man_rules_py,
|
command : [update_man_rules_py,
|
||||||
'@0@/man/*.xml'.format(meson.project_source_root()),
|
'@0@/man/*.xml'.format(meson.project_source_root()),
|
||||||
|
@@ -2743,11 +2743,11 @@ foreach executable : ['systemd-journal-remote', 'systemd-sbsign', 'systemd-keyut
|
|||||||
endforeach
|
endforeach
|
||||||
|
|
||||||
if mkosi.found()
|
if mkosi.found()
|
||||||
custom_target('mkosi',
|
custom_target(
|
||||||
build_always_stale : true,
|
build_always_stale : true,
|
||||||
build_by_default: false,
|
build_by_default: false,
|
||||||
console : true,
|
console : true,
|
||||||
output : '.',
|
output : 'mkosi',
|
||||||
command : [
|
command : [
|
||||||
mkosi,
|
mkosi,
|
||||||
'--directory', meson.current_source_dir(),
|
'--directory', meson.current_source_dir(),
|
||||||
|
@@ -82,7 +82,6 @@ foreach unit : units
|
|||||||
|
|
||||||
if needs_jinja
|
if needs_jinja
|
||||||
t = custom_target(
|
t = custom_target(
|
||||||
name,
|
|
||||||
input : source,
|
input : source,
|
||||||
output : name,
|
output : name,
|
||||||
command : [jinja2_cmdline, '@INPUT@', '@OUTPUT@'],
|
command : [jinja2_cmdline, '@INPUT@', '@OUTPUT@'],
|
||||||
|
Reference in New Issue
Block a user