From 65bbeb1f8ce3c6a06865f58670082e6c8d7e4a68 Mon Sep 17 00:00:00 2001 From: Dick van den Brink Date: Wed, 8 Jun 2016 19:33:03 +0200 Subject: [PATCH] Force LF newlines for LKG builds/non debug builds Fixes 6630 --- Jakefile.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jakefile.js b/Jakefile.js index a449dfcfa98..d36d9a6857a 100644 --- a/Jakefile.js +++ b/Jakefile.js @@ -313,6 +313,8 @@ function compileFile(outFile, sources, prereqs, prefixes, useBuiltCompiler, opts if (!opts.noMapRoot) { options += " -mapRoot file:///" + path.resolve(path.dirname(outFile)); } + } else { + options += " --newLine LF"; } if (opts.stripInternal) {