diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-09-03 21:24:00 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-09-03 23:02:50 +0300 |
commit | 51a601c2ee9717381ef6574c9ca5ccfc583c930e (patch) | |
tree | 866e095b7ec7b8f91f40e4973bee02a63c03e810 | |
parent | bba3ae57247774d22a4da7480927117dbdfc900d (diff) | |
download | meson-51a601c2ee9717381ef6574c9ca5ccfc583c930e.zip meson-51a601c2ee9717381ef6574c9ca5ccfc583c930e.tar.gz meson-51a601c2ee9717381ef6574c9ca5ccfc583c930e.tar.bz2 |
Log the used strip command. [skip ci]
-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 8b0768e..4f894a2 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') |