diff options
author | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2010-05-26 12:05:58 (GMT) |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2010-05-26 17:40:21 (GMT) |
commit | 724ed689cdec252ffb33b496fceb6ce4f81125dd (patch) | |
tree | a2166681a9d901a4f9dcaef75ff1392f9e6ca2d0 /mkspecs/features/incredibuild_xge.prf | |
parent | c22dc63d5333c85afd167944675bfebec6b5c9a3 (diff) | |
download | Qt-724ed689cdec252ffb33b496fceb6ce4f81125dd.zip Qt-724ed689cdec252ffb33b496fceb6ce4f81125dd.tar.gz Qt-724ed689cdec252ffb33b496fceb6ce4f81125dd.tar.bz2 |
escape backslashes
this makes windows-style path specs *ugly*. that's intentional. :-P
Diffstat (limited to 'mkspecs/features/incredibuild_xge.prf')
-rw-r--r-- | mkspecs/features/incredibuild_xge.prf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mkspecs/features/incredibuild_xge.prf b/mkspecs/features/incredibuild_xge.prf index e241ca4..b8ca571 100644 --- a/mkspecs/features/incredibuild_xge.prf +++ b/mkspecs/features/incredibuild_xge.prf @@ -1,9 +1,9 @@ contains(TEMPLATE, "vc.*")|contains(TEMPLATE_PREFIX, "vc") { - EOC = \$\$escape_expand(\n\t) + EOC = \$\$escape_expand(\\\\n\\\\t) # The VCPROJ generator will replace the \r\h with the coded \r\n: 
 # No other generator understands the \h - win32-msvc2*|wince*msvc*: EOC = \$\$escape_expand(\r\h) + win32-msvc2*|wince*msvc*: EOC = \$\$escape_expand(\\\\r\\\\h) for(xge, INCREDIBUILD_XGE) { eval($${xge}.commands = Rem IncrediBuild_AllowRemote $$EOC Rem IncrediBuild_OutputFile $$replace($${xge}.output,/,\\) $$EOC $$eval($${xge}.commands)) |