diff options
| author | Eli Schwartz <eschwartz93@gmail.com> | 2024-08-06 01:54:28 -0400 |
|---|---|---|
| committer | Eli Schwartz <eschwartz93@gmail.com> | 2024-08-06 01:55:22 -0400 |
| commit | 02e4138e102decfae694d6bc8b4e0e6d4a4db8c7 (patch) | |
| tree | 2141eadbbd7cdf11d10ea136c919bd2db01cccca | |
| parent | 21eda4dd3b0c497daa44cb0afe370520805e4735 (diff) | |
| download | meson-02e4138e102decfae694d6bc8b4e0e6d4a4db8c7.tar.gz | |
Revert "minstall: update symlink install message presentation"
This reverts commit 3587786a3cf5dd06aa4cab2b6abb36bfd7c7eca0.
No unicode, thanks.
Fixes #13519
| -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 418124c64..e5901c45a 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: {link} → {target}') + self.log(f'Installing symlink pointing to {target} to {link}') try: self.symlink(target, link, target_is_directory=os.path.isdir(abs_target)) except (NotImplementedError, OSError): |
