print output file path on win32 too

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3543 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2004-05-08 14:39:23 +00:00
parent c458fd50bc
commit 5f74ac58f9

View file

@ -2356,8 +2356,10 @@ int CEXEBuild::write_output(void)
GetFullPathName(build_output_filename,1024,buffer,&p);
#else
char *buffer = my_realpath(build_output_filename);
#endif
notify(MAKENSIS_NOTIFY_OUTPUT, buffer);
INFO_MSG("\nOutput: \"%s\"\n", buffer);
#ifndef _WIN32
my_free_realpath(build_output_filename, buffer);
#endif
}