build: stop overwriting outputs, and replace the intended output

Currently, the code puts a placeholder in for the first output, then
replaces all of the outputs when it generates final value. Instead,
let's only replace the placeholder value.
pull/10453/head
Dylan Baker 3 years ago committed by Eli Schwartz
parent 27bde338fb
commit b53d144794
  1. 6
      mesonbuild/build.py

@ -622,7 +622,7 @@ class Target(HoldableObject):
else:
custom_install_dir = False
# if outdirs is empty we need to set to something, otherwise we set
# only the first value to the default
# only the first value to the default.
if outdirs:
outdirs[0] = default_install_dir
else:
@ -2149,7 +2149,9 @@ class SharedLibrary(BuildTarget):
if self.suffix is None:
self.suffix = suffix
self.filename = self.filename_tpl.format(self)
self.outputs = [self.filename]
# There may have been more outputs added by the time we get here, so
# only replace the first entry
self.outputs[0] = self.filename
if create_debug_file:
self.debug_filename = os.path.splitext(self.filename)[0] + '.pdb'

Loading…
Cancel
Save