diff options
Diffstat (limited to 'mesonbuild')
-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') |