mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-01 00:23:23 +00:00
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 <neolit123@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
1dccf84c67
commit
8b517f8081
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue