Pier Angelo Vendrame pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits: ffafd421 by Pier Angelo Vendrame at 2023-10-17T18:41:56+02:00 Bug 40984: Include PDBs also from obj-*/dist.
Because of a difference between the investigation on adding PDBs and the actual implementation, we were missing .pdb files for .exe files.
- - - - -
1 changed file:
- projects/firefox/build
Changes:
===================================== projects/firefox/build ===================================== @@ -229,7 +229,7 @@ RBM_TB_EOF mkdir -p $distdir/Debug/Browser pushd obj-* cp -Lr dist/include $distdir/Debug/ - find . ( -path ./dist -o -path ./_tests ) -prune -o -name '*.pdb' -exec cp -l {} $distdir/Debug/Browser/ ; + find . -path ./_tests -prune -o -name '*.pdb' -exec cp -l {} $distdir/Debug/Browser/ ; popd [% END -%]
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/ff...