From 9a0918a35493cfb16f99f8813a2e760148c46e7a Mon Sep 17 00:00:00 2001 From: David Anderson Date: Mon, 30 Dec 2013 20:21:33 -0500 Subject: [PATCH] Fix typo that caused dump_syms to execute out of order with respect to linking. --- tools/buildbot/BreakpadSymbols | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/buildbot/BreakpadSymbols b/tools/buildbot/BreakpadSymbols index dd958790..f353836c 100644 --- a/tools/buildbot/BreakpadSymbols +++ b/tools/buildbot/BreakpadSymbols @@ -25,7 +25,7 @@ for cxx_task in cxx_tasks: argv = [sys.executable, UPLOAD_SCRIPT, symbol_file] + argv builder.AddCommand( - inputs = [UPLOAD_SCRIPT, debug_file], + inputs = [UPLOAD_SCRIPT, debug_entry], argv = argv, outputs = [symbol_file] )