aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniele Nicolodi <daniele@grinta.net>2023-02-21 21:14:39 +0100
committerEli Schwartz <eschwartz93@gmail.com>2023-02-27 07:03:30 -0500
commit97320e71862479e1dd22cc79e622acd5f89218c5 (patch)
tree1a3242553da02f506d701180b3d6982e113be402
parentf39ccde5138aeabcbd483ca4b779954f056324e2 (diff)
downloadmeson-97320e71862479e1dd22cc79e622acd5f89218c5.zip
meson-97320e71862479e1dd22cc79e622acd5f89218c5.tar.gz
meson-97320e71862479e1dd22cc79e622acd5f89218c5.tar.bz2
minstall: Replace non-breakable space with plain space in comment
-rw-r--r--mesonbuild/minstall.py2
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: