From eb872d3204039489544b5e14efba899a55d6eae4 Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Thu, 28 Mar 2013 17:44:09 +0100 Subject: [PATCH] Fix potential quoting problem in .qmake.cache on Windows. Unlike mingw makefiles, system() actually always uses the real host shell, so use the host OS instead of the makefiles' path separator as the discriminator. Change-Id: Iaba6fc76f469e75fadd9d07e0c9e1ac07016338c Reviewed-by: Oswald Buddenhagen --- qtcreator.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qtcreator.pro b/qtcreator.pro index 532053369d..091b693799 100644 --- a/qtcreator.pro +++ b/qtcreator.pro @@ -21,7 +21,7 @@ OTHER_FILES += dist/copyright_template.txt \ qbs/pluginspec/pluginspec.qbs qmake_cache = $$targetPath($$IDE_BUILD_TREE/.qmake.cache) -equals(QMAKE_DIR_SEP, /): { +!equals(QMAKE_HOST.os, Windows) { maybe_quote = "\"" maybe_backslash = "\\" } -- GitLab