Avoid warning about multiple outputs when building private directory name
Fixup for b4b1a2c5a1
.
A warning would be printed for any rule with multiple outputs, for
example:
WARNING: custom_target 'coredump.conf.5' has more than one output! Using the first one.
WARNING: custom_target 'dnssec-trust-anchors.d.5' has more than one output! Using the first one.
WARNING: custom_target 'halt.8' has more than one output! Using the first one.
Fixes https://github.com/systemd/systemd/issues/16461.
This commit is contained in:
parent
3dea817a59
commit
1123f4f311
|
@ -183,9 +183,9 @@ class Backend:
|
|||
self.build_to_src = mesonlib.relpath(self.environment.get_source_dir(),
|
||||
self.environment.get_build_dir())
|
||||
|
||||
def get_target_filename(self, t):
|
||||
def get_target_filename(self, t, *, warn_multi_output: bool = True):
|
||||
if isinstance(t, build.CustomTarget):
|
||||
if len(t.get_outputs()) != 1:
|
||||
if warn_multi_output and len(t.get_outputs()) != 1:
|
||||
mlog.warning('custom_target {!r} has more than one output! '
|
||||
'Using the first one.'.format(t.name))
|
||||
filename = t.get_outputs()[0]
|
||||
|
@ -261,7 +261,7 @@ class Backend:
|
|||
return self.build_to_src
|
||||
|
||||
def get_target_private_dir(self, target):
|
||||
return os.path.join(self.get_target_filename(target) + '.p')
|
||||
return os.path.join(self.get_target_filename(target, warn_multi_output=False) + '.p')
|
||||
|
||||
def get_target_private_dir_abs(self, target):
|
||||
return os.path.join(self.environment.get_build_dir(), self.get_target_private_dir(target))
|
||||
|
|
Loading…
Reference in New Issue