This commit is contained in:
Varriount
2015-01-17 20:17:36 -05:00
parent 78b5779d93
commit d630f72b81

View File

@@ -332,7 +332,6 @@ const
ucc(),
icl()]
const
hExt* = ".h"
var
@@ -547,8 +546,9 @@ proc getCompileCFileCmd*(cfilename: string, isExternal = false): string =
else:
completeCFilePath(toObjFile(cfile))
objfile = quoteShell(objfile)
cfile = quoteShell(cfile)
result = quoteShell(compilePattern % [
"file", quoteShell(cfile), "objfile", quoteShell(objfile), "options", options,
"file", cfile, "objfile", objfile, "options", options,
"include", includeCmd, "nimrod", getPrefixDir(),
"nim", getPrefixDir(), "lib", libpath])
add(result, ' ')