From 3587786a3cf5dd06aa4cab2b6abb36bfd7c7eca0 Mon Sep 17 00:00:00 2001 From: James Knight Date: Sun, 4 Aug 2024 00:02:05 -0400 Subject: [PATCH] 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 --- mesonbuild/minstall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesonbuild/minstall.py b/mesonbuild/minstall.py index e5901c45a..418124c64 100644 --- a/mesonbuild/minstall.py +++ b/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):