[tasque/windows] [xbuild] Use quotes for windows cmds with spaces



commit dfc2b829fca5c221458753efa0c747ad3ad4947a
Author: Antonius Riha <antoniusriha gmail com>
Date:   Fri Oct 26 02:33:01 2012 +0200

    [xbuild] Use quotes for windows cmds with spaces

 build/X.Common.targets |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/build/X.Common.targets b/build/X.Common.targets
index 75a3a29..5c947ab 100644
--- a/build/X.Common.targets
+++ b/build/X.Common.targets
@@ -181,10 +181,10 @@
   <Choose>
     <When Condition=" '$(OS)' == 'Windows_NT' ">
       <PropertyGroup>
-        <IntlToolMerge Condition=" '$(IntlToolMerge)' == '' ">$(MSBuildProgramFiles32)\GnuWin32\bin\intltool-merge.exe</IntlToolMerge>
-        <IntlToolUpdate Condition=" '$(IntlToolUpdate)' == '' ">$(MSBuildProgramFiles32)\GnuWin32\bin\intltool-update.exe</IntlToolUpdate>
-        <MsgFmt Condition=" '$(MsgFmt)' == '' ">$(MSBuildProgramFiles32)\GnuWin32\bin\msgfmt.exe</MsgFmt>
-        <UpdateIconCache Condition=" '$(UpdateIconCache)' == '' ">$(MSBuildProgramFiles32)\GTK2-Runtime\bin\gtk-update-icon-cache.exe</UpdateIconCache>
+        <IntlToolMerge Condition=" '$(IntlToolMerge)' == '' ">%22$(MSBuildProgramFiles32)\GnuWin32\bin\intltool-merge.exe%22</IntlToolMerge>
+        <IntlToolUpdate Condition=" '$(IntlToolUpdate)' == '' ">%22$(MSBuildProgramFiles32)\GnuWin32\bin\intltool-update.exe%22</IntlToolUpdate>
+        <MsgFmt Condition=" '$(MsgFmt)' == '' ">%22$(MSBuildProgramFiles32)\GnuWin32\bin\msgfmt.exe%22</MsgFmt>
+        <UpdateIconCache Condition=" '$(UpdateIconCache)' == '' ">%22$(MSBuildProgramFiles32)\GTK2-Runtime\bin\gtk-update-icon-cache.exe%22</UpdateIconCache>
       </PropertyGroup>
     </When>
     <Otherwise>



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]