diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-10-09 19:50:20 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-09 19:50:20 +0300 |
commit | f64d9b43802762ec10acf16d719fa261b85079ad (patch) | |
tree | 341a544b003f207850ccb934655d54e1a62ac7bf /mesonbuild/minstall.py | |
parent | 65fc4149c5519f87fc8259bcbf31d923ac52162a (diff) | |
parent | 9c456e2baf281682569ce89137148d7b5b3487f5 (diff) | |
download | meson-f64d9b43802762ec10acf16d719fa261b85079ad.zip meson-f64d9b43802762ec10acf16d719fa261b85079ad.tar.gz meson-f64d9b43802762ec10acf16d719fa261b85079ad.tar.bz2 |
Merge pull request #5907 from xhaakon/pdb
Fix *.pdb files missing in meson introspect --installed output
Diffstat (limited to 'mesonbuild/minstall.py')
-rw-r--r-- | mesonbuild/minstall.py | 5 |
1 files changed, 0 insertions, 5 deletions
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. |