Skip to content

Commit

Permalink
use \n as line separator in timestamps file even on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
dougxc committed Dec 10, 2019
1 parent 924c8d0 commit 3f051fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/mx.compiler/mx_compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -1198,7 +1198,7 @@ def _update_graaljdk(src_jdk, dst_jdk_dir=None, root_module_names=None, export_t
# may have changed and we want to pick up these changes.
source_jdk_timestamps_file = dst_jdk_dir + '.source_jdk_timestamps'
timestamps = []
nl = os.linesep
nl = '\n'
for root, _, filenames in os.walk(jdk.home):
for name in filenames:
ts = mx.TimeStampFile(join(root, name))
Expand Down

0 comments on commit 3f051fb

Please sign in to comment.