diff --git a/tools/buildbot/BreakpadSymbols b/tools/buildbot/BreakpadSymbols index 58b725dd..1633f343 100644 --- a/tools/buildbot/BreakpadSymbols +++ b/tools/buildbot/BreakpadSymbols @@ -16,7 +16,9 @@ for cxx_task in cxx_tasks: if builder.target_platform == 'linux': argv = ['dump_syms', debug_file, os.path.dirname(debug_file)] elif builder.target_platform == 'mac': - argv = ['dump_syms', '-g', debug_file + '.dSYM', debug_file] + # Required once dump_syms is updated on the slaves. + #argv = ['dump_syms', '-g', debug_file + '.dSYM', debug_file] + argv = ['dump_syms', debug_file + '.dSYM'] elif builder.target_platform == 'windows': argv = ['dump_syms.exe', debug_file]