From 02e4138e102decfae694d6bc8b4e0e6d4a4db8c7 Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Tue, 6 Aug 2024 01:54:28 -0400 Subject: [PATCH] Revert "minstall: update symlink install message presentation" This reverts commit 3587786a3cf5dd06aa4cab2b6abb36bfd7c7eca0. No unicode, thanks. Fixes #13519 --- mesonbuild/minstall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):