From 904654b9ecbc32c7a2ec945be95fec783e75db33 Mon Sep 17 00:00:00 2001 From: Araq Date: Sat, 28 Jan 2017 23:16:44 +0100 Subject: [PATCH] with dir with space regression again --- compiler/extccomp.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/extccomp.nim b/compiler/extccomp.nim index 02028cf72a..8ca34223b9 100644 --- a/compiler/extccomp.nim +++ b/compiler/extccomp.nim @@ -782,7 +782,7 @@ proc callCCompiler*(projectfile: string) = it = PStrEntry(it.next) for x in toCompile: add(objfiles, ' ') - add(objfiles, x.obj) + add(objfiles, quoteShell(x.obj)) linkCmd = getLinkCmd(projectfile, objfiles) if optCompileOnly notin gGlobalOptions: