minstall: update symlink install message presentation

Updating the log message generated when installing a symbolic link. The
new message format may be a bit more clear on the link being created.

Signed-off-by: James Knight <james.d.knight@live.com>
pull/13511/head
James Knight 3 months ago committed by Jussi Pakkanen
parent fa4f233946
commit 3587786a3c
  1. 2
      mesonbuild/minstall.py

@ -442,7 +442,7 @@ class Installer:
raise MesonException(f'Destination {link!r} already exists and is not a symlink')
self.remove(link)
if not self.printed_symlink_error:
self.log(f'Installing symlink pointing to {target} to {link}')
self.log(f'Installing symlink: {link}{target}')
try:
self.symlink(target, link, target_is_directory=os.path.isdir(abs_target))
except (NotImplementedError, OSError):

Loading…
Cancel
Save