aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGanesh Viswanathan <dev@genotrance.com>2018-06-11 11:00:51 -0500
committerGanesh Viswanathan <dev@genotrance.com>2018-06-11 11:00:51 -0500
commita8bcbf8e89460a460cfed6842b10eedcda9f50b2 (patch)
treecaefca8b5bbc9e6e61f9d57bc7b685565a3dd7c3
parent9805bdbc801c5d87dcda6570cb6d932fe2d56f54 (diff)
downloadnimgen-a8bcbf8e89460a460cfed6842b10eedcda9f50b2.tar.gz
nimgen-a8bcbf8e89460a460cfed6842b10eedcda9f50b2.zip
Revert nep1 for c2nim
-rw-r--r--nimgen.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/nimgen.nim b/nimgen.nim
index 11dd8ae..d804657 100644
--- a/nimgen.nim
+++ b/nimgen.nim
@@ -518,7 +518,7 @@ proc c2nim(fl, outfile: string, c2nimConfig: c2nimConfigObj) =
extflags = "--header:header$#" % fname
# Run c2nim on generated file
- var cmd = "c2nim $# $# --out:$# $# --nep1" % [c2nimConfig.flags, extflags, outfile, cfile]
+ var cmd = "c2nim $# $# --out:$# $#" % [c2nimConfig.flags, extflags, outfile, cfile]
when defined(windows):
cmd = "cmd /c " & cmd
discard execProc(cmd)