Remove wxwidgets references from NSIS script.

The NSIS script tried to delete wxwidgets-based executables/locales.  These files are ancient, and presumably no users have them anymore, so we can simplify the NSIS script by removing those lines.
This commit is contained in:
JeremyRand 2016-03-19 11:19:06 +00:00
parent 26880c34cd
commit 0528e30a45
1 changed files with 0 additions and 4 deletions

View File

@ -83,10 +83,6 @@ Section -Main SEC0000
File /r @abs_top_srcdir@/doc\*.*
SetOutPath $INSTDIR
WriteRegStr HKCU "${REGKEY}\Components" Main 1
# Remove old wxwidgets-based-bitcoin executable and locales:
Delete /REBOOTOK $INSTDIR\@PACKAGE_TARNAME@.exe
RMDir /r /REBOOTOK $INSTDIR\locale
SectionEnd
Section -post SEC0001