Fix typo that caused dump_syms to execute out of order with respect to linking.

This commit is contained in:
David Anderson 2013-12-30 20:21:33 -05:00
parent cfad3b26ca
commit 9a0918a354

View File

@ -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]
)