From 5f74ac58f9c39fc72ce5b79884ef89e6d77ddc04 Mon Sep 17 00:00:00 2001 From: kichik Date: Sat, 8 May 2004 14:39:23 +0000 Subject: [PATCH] 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 --- Source/build.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/build.cpp b/Source/build.cpp index db57aac0..a1d45798 100644 --- a/Source/build.cpp +++ b/Source/build.cpp @@ -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 }