diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2012-07-22 21:49:09 +0000 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2012-07-22 21:49:09 +0000 |
commit | 90d95b6323e9a724e7aac49806e775e3ea7fc504 (patch) | |
tree | 65179c0dbf8cca80934d7cfe60b294387f282ace /share | |
parent | fa914f1ddaeed79f1e2d5404b4789e3a1c1aebb2 (diff) |
Replace all occurances of license.txt with COPYING, including naming the file COPYING.txt on Windows
Diffstat (limited to 'share')
-rw-r--r-- | share/setup.nsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/setup.nsi b/share/setup.nsi index c0bc880a56..87cd58a855 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -67,7 +67,7 @@ Section -Main SEC0000 SetOutPath $INSTDIR
SetOverwrite on
File ../release/bitcoin-qt.exe
- File /oname=license.txt ../COPYING
+ File /oname=COPYING.txt ../COPYING
File /oname=readme.txt ../doc/README_windows.txt
SetOutPath $INSTDIR\daemon
File ../src/bitcoind.exe
@@ -120,7 +120,7 @@ done${UNSECTION_ID}: # Uninstaller sections
Section /o -un.Main UNSEC0000
Delete /REBOOTOK $INSTDIR\bitcoin-qt.exe
- Delete /REBOOTOK $INSTDIR\license.txt
+ Delete /REBOOTOK $INSTDIR\COPYING.txt
Delete /REBOOTOK $INSTDIR\readme.txt
RMDir /r /REBOOTOK $INSTDIR\daemon
RMDir /r /REBOOTOK $INSTDIR\src
|