From 35027500524a5d34bbb7bbdbd14c936c5387f905 Mon Sep 17 00:00:00 2001 From: hallgren Date: Fri, 13 Mar 2015 13:48:14 +0000 Subject: [PATCH] GF.CompileInParallel: fix a Win32 problem MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Recognize \ in addition to / when extracting path components. --- src/compiler/GF/CompileInParallel.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compiler/GF/CompileInParallel.hs b/src/compiler/GF/CompileInParallel.hs index 48e5821b0..d988d5ef1 100644 --- a/src/compiler/GF/CompileInParallel.hs +++ b/src/compiler/GF/CompileInParallel.hs @@ -63,6 +63,7 @@ parallelBatchCompile jobs opts rootfiles0 = all_modes = ["alltenses","present"] dropSlash ('/':p) = p + dropSlash ('\\':p) = p dropSlash p = p batchCompile1 lib_dir (opts,filepaths) =