diff options
| author | James Knight <james.d.knight@live.com> | 2024-08-04 00:02:05 -0400 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2024-08-04 16:15:34 +0300 |
| commit | 3587786a3cf5dd06aa4cab2b6abb36bfd7c7eca0 (patch) | |
| tree | 05808cea62b3dca5265f0268fa303b1b9f910ee7 | |
| parent | fa4f2339465ce3d755e2df802ebd5aa962e2ad27 (diff) | |
| download | meson-3587786a3cf5dd06aa4cab2b6abb36bfd7c7eca0.tar.gz | |
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>
| -rw-r--r-- | mesonbuild/minstall.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |
