From 8b517f80817c837cd5efe815fc40315409be14a1 Mon Sep 17 00:00:00 2001 From: "Lubomir I. Ivanov" Date: Thu, 10 Oct 2013 17:07:24 +0300 Subject: [PATCH] subsurface-configure.pri: disable auto-"silent" mode for win32 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 Signed-off-by: Dirk Hohndel --- subsurface-configure.pri | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsurface-configure.pri b/subsurface-configure.pri index dc98867a3..51ff16dbc 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