Changeset 183581 in webkit for trunk/Source/JavaScriptCore/generate-js-builtins
- Timestamp:
- Apr 29, 2015, 3:12:31 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/generate-js-builtins
r181673 r183581 281 281 282 282 if (not os.path.exists(output_base + ".h")) or (not filecmp.cmp(output_base + ".h.tmp", output_base + ".h", shallow=False)): 283 if (os.path.exists(output_base + ".h")): 284 os.remove(output_base + ".h") 283 285 os.rename(output_base + ".h.tmp", output_base + ".h") 284 286 else: … … 286 288 287 289 if (not os.path.exists(output_base + ".cpp")) or (not filecmp.cmp(output_base + ".cpp.tmp", output_base + ".cpp", shallow=False)): 290 if (os.path.exists(output_base + ".cpp")): 291 os.remove(output_base + ".cpp") 288 292 os.rename(output_base + ".cpp.tmp", output_base + ".cpp") 289 293 else:
Note:
See TracChangeset
for help on using the changeset viewer.