[PATCH 1/2] subsurface-configure.pri: disable auto-"silent" mode for win32

Lubomir I. Ivanov neolit123 at gmail.com
Thu Oct 10 07:07:24 UTC 2013


From: "Lubomir I. Ivanov" <neolit123 at gmail.com>

Certain versions of mingw32-make will try to "CreateProcess"
passing the contents of CC and CXX. On win32, with CONFIG += silent
CC and CXX become composite containing multiple commands
such as "@echo... && gcc", which produces undesired results.

For the time being, do not automatically enable "silent" mode
if the current OS is win32. Possibly a better solution can be
found later on.

Signed-off-by: Lubomir I. Ivanov <neolit123 at gmail.com>
---
 subsurface-configure.pri | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/subsurface-configure.pri b/subsurface-configure.pri
index dc98867..51ff16d 100644
--- a/subsurface-configure.pri
+++ b/subsurface-configure.pri
@@ -126,7 +126,7 @@ win32 {
 #
 # misc
 #
-!equals(V, 1): CONFIG += silent
+!equals(V, 1): !win32: CONFIG += silent
 MOC_DIR = .moc
 UI_DIR = .uic
 RCC_DIR = .rcc
-- 
1.7.11.msysgit.0



More information about the subsurface mailing list