summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2019-09-03 21:24:00 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2019-09-03 21:24:00 +0300
commitf946a1bd6adedfbc721b8b6ee81529255e5ae2ed (patch)
tree37638a753c06018e9cb94a8e6205168475da1382
parent4143c7bceb0025d9b20d3bcbf2f7d04eb5e0f0ce (diff)
downloadmeson-striplog.tar.gz
Log the used strip command. [skip ci]striplog
-rw-r--r--mesonbuild/minstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/minstall.py b/mesonbuild/minstall.py
index 8b0768e76..4f894a2cc 100644
--- a/mesonbuild/minstall.py
+++ b/mesonbuild/minstall.py
@@ -453,7 +453,7 @@ class Installer:
if fname.endswith('.jar'):
print('Not stripping jar target:', os.path.basename(fname))
continue
- print('Stripping target {!r}'.format(fname))
+ print('Stripping target {!r} using {}.'.format(fname, d.strip_bin[0]))
ps, stdo, stde = Popen_safe(d.strip_bin + [outname])
if ps.returncode != 0:
print('Could not strip file.\n')