Commit 48e8d5c9 authored by assareh's avatar assareh Committed by Commit bot

Fix check for when symbols are out of date.

Review-Url: https://codereview.chromium.org/2625913002
Cr-Commit-Position: refs/heads/master@{#443376}
parent 6840ab3e
......@@ -21,7 +21,7 @@ outfile = sys.argv[4]
# Dump only when the output file is out-of-date.
if not os.path.isfile(outfile) or \
os.stat(outfile).st_mtime > os.stat(infile).st_mtime:
os.stat(outfile).st_mtime < os.stat(infile).st_mtime:
with open(outfile, 'w') as outfileobj:
subprocess.check_call([dumpsyms, infile], stdout=outfileobj)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment