[GRASS-SVN] r61835 - grass/branches/develbranch_6/mswindows

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Sep 7 11:20:17 PDT 2014


Author: hellik
Date: 2014-09-07 11:20:17 -0700 (Sun, 07 Sep 2014)
New Revision: 61835

Modified:
   grass/branches/develbranch_6/mswindows/GRASS-Installer.nsi.tmpl
Log:
nsis: quoting ExecWait following nsis documentation (http://nsis.sourceforge.net/Docs/Chapter4.html#execwait)

Modified: grass/branches/develbranch_6/mswindows/GRASS-Installer.nsi.tmpl
===================================================================
--- grass/branches/develbranch_6/mswindows/GRASS-Installer.nsi.tmpl	2014-09-07 18:17:29 UTC (rev 61834)
+++ grass/branches/develbranch_6/mswindows/GRASS-Installer.nsi.tmpl	2014-09-07 18:20:17 UTC (rev 61835)
@@ -919,9 +919,9 @@
 	StrCmp $0 "success" untar_ok untar_failed
 	
 	untar_ok:
-	ExecWait "$TEMP\$ORIGINAL_UNTAR_FOLDER\bin\vcredist_2005_x86.exe /q"
-	ExecWait "$TEMP\$ORIGINAL_UNTAR_FOLDER\bin\vcredist_2008_x86.exe /q"	
-	ExecWait "$TEMP\$ORIGINAL_UNTAR_FOLDER\bin\vcredist_2010_x86.exe /q"
+	ExecWait '"$TEMP\$ORIGINAL_UNTAR_FOLDER\bin\vcredist_2005_x86.exe" /q'
+	ExecWait '"$TEMP\$ORIGINAL_UNTAR_FOLDER\bin\vcredist_2008_x86.exe" /q'	
+	ExecWait '"$TEMP\$ORIGINAL_UNTAR_FOLDER\bin\vcredist_2010_x86.exe" /q'
 	CopyFiles "$TEMP\$ORIGINAL_UNTAR_FOLDER\bin\*.dll" "$INSTDIR\extrabin"
 	Delete "$TEMP\$ARCHIVE_NAME"
 	RMDir /r "$TEMP\$ORIGINAL_UNTAR_FOLDER"



More information about the grass-commit mailing list