[GRASS-SVN] r61832 - grass/trunk/mswindows

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Sep 7 11:10:19 PDT 2014


Author: hellik
Date: 2014-09-07 11:10:19 -0700 (Sun, 07 Sep 2014)
New Revision: 61832

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

Modified: grass/trunk/mswindows/GRASS-Installer.nsi.tmpl
===================================================================
--- grass/trunk/mswindows/GRASS-Installer.nsi.tmpl	2014-09-07 17:56:54 UTC (rev 61831)
+++ grass/trunk/mswindows/GRASS-Installer.nsi.tmpl	2014-09-07 18:10:19 UTC (rev 61832)
@@ -937,9 +937,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