Update of /cvsroot/com0com/com0com/NSIS
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv11105
Modified Files:
install.nsi
Log Message:
Added missing SetOutPath
Index: install.nsi
===================================================================
RCS file: /cvsroot/com0com/com0com/NSIS/install.nsi,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** install.nsi 22 Jan 2007 17:10:32 -0000 1.5
--- install.nsi 8 Aug 2007 14:15:16 -0000 1.6
***************
*** 20,23 ****
--- 20,26 ----
*
* $Log$
+ * Revision 1.6 2007/08/08 14:15:16 vfrolov
+ * Added missing SetOutPath
+ *
* Revision 1.5 2007/01/22 17:10:32 vfrolov
* Partially added support for non i386 CPUs
***************
*** 209,212 ****
--- 212,218 ----
Section "Uninstall"
+ ; Set output path to the installation directory.
+ SetOutPath $INSTDIR
+
GetTempFileName $0
ExecWait "RunDll32 setup,RunDll --output $0 uninstall"
|