diff options
author | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2010-05-27 14:39:11 (GMT) |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2010-05-27 16:03:12 (GMT) |
commit | f399b0deede15c7c5cb1108db261b77452afb394 (patch) | |
tree | b78340f989a690ac246f6b8471b73d78601d27e1 /mkspecs/features/incredibuild_xge.prf | |
parent | c86bb735e9b783b03010bc830c2a7a2fbcdb71b7 (diff) | |
download | Qt-f399b0deede15c7c5cb1108db261b77452afb394.zip Qt-f399b0deede15c7c5cb1108db261b77452afb394.tar.gz Qt-f399b0deede15c7c5cb1108db261b77452afb394.tar.bz2 |
fix escaping - by not using eval
the left-hand-side of qmake assignments is expanded, so there is
no need to use eval.
Diffstat (limited to 'mkspecs/features/incredibuild_xge.prf')
-rw-r--r-- | mkspecs/features/incredibuild_xge.prf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mkspecs/features/incredibuild_xge.prf b/mkspecs/features/incredibuild_xge.prf index b8ca571..a81a0cc 100644 --- a/mkspecs/features/incredibuild_xge.prf +++ b/mkspecs/features/incredibuild_xge.prf @@ -1,11 +1,11 @@ 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)) + $${xge}.commands = Rem IncrediBuild_AllowRemote $$EOC Rem IncrediBuild_OutputFile $$replace($${xge}.output,/,\\) $$EOC $$eval($${xge}.commands) } } |