summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz93@gmail.com>2024-08-06 01:54:28 -0400
committerEli Schwartz <eschwartz93@gmail.com>2024-08-06 01:55:22 -0400
commit02e4138e102decfae694d6bc8b4e0e6d4a4db8c7 (patch)
tree2141eadbbd7cdf11d10ea136c919bd2db01cccca
parent21eda4dd3b0c497daa44cb0afe370520805e4735 (diff)
downloadmeson-02e4138e102decfae694d6bc8b4e0e6d4a4db8c7.tar.gz
Revert "minstall: update symlink install message presentation"
This reverts commit 3587786a3cf5dd06aa4cab2b6abb36bfd7c7eca0. No unicode, thanks. Fixes #13519
-rw-r--r--mesonbuild/minstall.py2
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):