Revert "minstall: update symlink install message presentation"

This reverts commit 3587786a3c.

No unicode, thanks.

Fixes #13519
pull/13520/head
Eli Schwartz 3 months ago
parent 21eda4dd3b
commit 02e4138e10
No known key found for this signature in database
GPG Key ID: CEB167EFB5722BD6
  1. 2
      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):

Loading…
Cancel
Save