Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1782)

Unified Diff: build/linux/dump_app_syms.py

Issue 2625913002: Fix check for when symbols are out of date. (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/linux/dump_app_syms.py
diff --git a/build/linux/dump_app_syms.py b/build/linux/dump_app_syms.py
index 65f76450c17622bebe45c97a9b9162664ce992d0..12e693ef18418c69f40d15f94c924078da50b42c 100644
--- a/build/linux/dump_app_syms.py
+++ b/build/linux/dump_app_syms.py
@@ -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)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698