(kichik) MakeNSIS now sends output directly to MakeNSISw, faster, and no
more problems with foreign languages in the output. git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1997 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
763d9a15b9
commit
ed547981a2
1 changed files with 3 additions and 1 deletions
|
@ -80,7 +80,7 @@ int main(int argc, char **argv)
|
|||
int tmpargpos=1;
|
||||
int no_logo=0;
|
||||
|
||||
if (argc > 1 && !lstrcmpi(argv[1], "/version"))
|
||||
if (argc > 1 && !stricmp(argv[1], "/VERSION"))
|
||||
{
|
||||
fprintf(g_output,NSIS_VERSION);
|
||||
fflush(g_output);
|
||||
|
@ -205,6 +205,7 @@ int main(int argc, char **argv)
|
|||
build.print_help(NULL);
|
||||
nousage++;
|
||||
}
|
||||
else if (!stricmp(argv[argpos],"/NOTIFYHWND")) build.notify_hwnd=(HWND)atol(argv[++argpos]);
|
||||
else if (!stricmp(argv[argpos],"/HDRINFO"))
|
||||
{
|
||||
if (build.display_info)
|
||||
|
@ -338,6 +339,7 @@ int main(int argc, char **argv)
|
|||
|
||||
if (build.display_script)
|
||||
{
|
||||
build.notify(MAKENSIS_NOTIFY_SCRIPT,sfile);
|
||||
fprintf(g_output,"\n\nProcessing script file: \"%s\"\n",sfile);
|
||||
fflush(g_output);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue