From cac0880ca60d7effbd2a0d7f7945e17321b2568f Mon Sep 17 00:00:00 2001 From: david Date: Fri, 1 Mar 2013 05:09:39 +0000 Subject: [PATCH] Use /out instead of /log in command-line Windows build. /log seems to be IDE internal logging, and has always been useless to me. /out gives you the error messages you see in the build window in the IDE. http://msdn.microsoft.com/en-us/library/ms241272(v=vs.100).aspx http://msdn.microsoft.com/en-us/library/ahky453h(v=vs.100).aspx --- mswin32/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mswin32/Makefile b/mswin32/Makefile index 278931f5f..e8498645d 100644 --- a/mswin32/Makefile +++ b/mswin32/Makefile @@ -10,8 +10,8 @@ NMAP_MSWIN32_AUX = ../../nmap-mswin32-aux winbuild: nmap.rc nsis/Nmap.nsi LICENSE # VCExpress.exe is devenv.com with the commercial Visual Studio suite instead of VC++ Express - "$(VCEXPRESS)" nmap.sln /build release /log $(LOGLOC) - "$(VCEXPRESS)" nmap.sln /build release /project nmap-update /log $(LOGLOC) + "$(VCEXPRESS)" nmap.sln /build release /out $(LOGLOC) + "$(VCEXPRESS)" nmap.sln /build release /project nmap-update /out $(LOGLOC) $(MAKENSIS) winpcap/winpcap-nmap.nsi rm -rf nmap-$(NMAP_VERSION) rm -f nmap-$(NMAP_VERSION)-win32.zip