diff options
| author | Matt Corallo <[email protected]> | 2011-10-17 11:29:45 -0400 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2011-10-25 11:53:00 -0400 |
| commit | d1df5717469f0daad77208972adf84129c8ad101 (patch) | |
| tree | 919ffc356d779da469143c972dc98750e4111f90 | |
| parent | Decrease number of installed packages for Linux Gitian build. (diff) | |
| download | discoin-d1df5717469f0daad77208972adf84129c8ad101.tar.xz discoin-d1df5717469f0daad77208972adf84129c8ad101.zip | |
Update setup.nsi for bitcoin-qt.
| -rw-r--r-- | share/setup.nsi | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/share/setup.nsi b/share/setup.nsi index 2f2eeaa78..19f5a5329 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -66,13 +66,11 @@ ShowUninstDetails show Section -Main SEC0000
SetOutPath $INSTDIR
SetOverwrite on
- File ../bitcoin-qt.exe
+ File ../release/bitcoin-qt.exe
File /oname=license.txt ../COPYING
File /oname=readme.txt ../doc/README_windows.txt
SetOutPath $INSTDIR\daemon
File ../src/bitcoind.exe
- SetOutPath $INSTDIR\locale
- File /r ../locale/*.*
SetOutPath $INSTDIR\src
File /r /x *.exe /x *.o ../src\*.*
SetOutPath $INSTDIR
@@ -117,7 +115,6 @@ Section /o -un.Main UNSEC0000 Delete /REBOOTOK $INSTDIR\license.txt
Delete /REBOOTOK $INSTDIR\readme.txt
RMDir /r /REBOOTOK $INSTDIR\daemon
- RMDir /r /REBOOTOK $INSTDIR\locale
RMDir /r /REBOOTOK $INSTDIR\src
DeleteRegValue HKCU "${REGKEY}\Components" Main
SectionEnd
|