diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-09-03 21:24:00 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-09-03 21:24:00 +0300 |
commit | f946a1bd6adedfbc721b8b6ee81529255e5ae2ed (patch) | |
tree | 37638a753c06018e9cb94a8e6205168475da1382 | |
parent | 4143c7bceb0025d9b20d3bcbf2f7d04eb5e0f0ce (diff) | |
download | meson-striplog.tar.gz |
Log the used strip command. [skip ci]striplog
-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 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') |