From 1bf17824766230a8ad0b2fe56040ff860c841d50 Mon Sep 17 00:00:00 2001 From: Jakub Adam Date: Wed, 6 Mar 2019 15:45:14 +0100 Subject: Fix *.pdb files missing in meson introspect --installed output On Windows, make sure the introspect command lists all Program database (PDB) files containing debugging information that Meson will install. --- mesonbuild/minstall.py | 5 ----- 1 file changed, 5 deletions(-) (limited to 'mesonbuild/minstall.py') diff --git a/mesonbuild/minstall.py b/mesonbuild/minstall.py index 731e093..9311e8d 100644 --- a/mesonbuild/minstall.py +++ b/mesonbuild/minstall.py @@ -460,11 +460,6 @@ class Installer: print('Stdout:\n%s\n' % stdo) print('Stderr:\n%s\n' % stde) sys.exit(1) - pdb_filename = os.path.splitext(fname)[0] + '.pdb' - if not should_strip and os.path.exists(pdb_filename): - pdb_outname = os.path.splitext(outname)[0] + '.pdb' - self.do_copyfile(pdb_filename, pdb_outname) - set_mode(pdb_outname, install_mode, d.install_umask) if fname.endswith('.js'): # Emscripten outputs js files and optionally a wasm file. # If one was generated, install it as well. -- cgit v1.1