diff options
Diffstat (limited to 'rod/extccomp.nim')
-rwxr-xr-x | rod/extccomp.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rod/extccomp.nim b/rod/extccomp.nim index bb29cea33..ea64c16b6 100755 --- a/rod/extccomp.nim +++ b/rod/extccomp.nim @@ -318,7 +318,7 @@ proc addFileToLink*(filename: string) = # BUGFIX: was ``appendStr`` proc execExternalProgram*(cmd: string) = - if (optListCmd in gGlobalOptions) or (gVerbosity > 0): MessageOut(cmd) + if (optListCmd in gGlobalOptions) or (gVerbosity > 0): MsgWriteln(cmd) if execCmd(cmd) != 0: rawMessage(errExecutionOfProgramFailed, "") proc generateScript(projectFile: string, script: PRope) = |