diff options
Diffstat (limited to 'mesonbuild/minstall.py')
-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 077823c..969e09e 100644 --- a/mesonbuild/minstall.py +++ b/mesonbuild/minstall.py @@ -592,7 +592,7 @@ class Installer: self.log(f'Stripping target {fname!r}.') if is_osx(): # macOS expects dynamic objects to be stripped with -x maximum. - #Â To also strip the debug info, -S must be added. + # To also strip the debug info, -S must be added. # See: https://www.unix.com/man-page/osx/1/strip/ returncode, stdo, stde = self.Popen_safe(strip_bin + ['-S', '-x', outname]) else: |