summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-07-06 11:10:42 -0700
committerH. Peter Anvin <hpa@zytor.com>2009-07-06 11:10:42 -0700
commit4ea9cede34e39e69a3511aa2cc91f39d84cc68c2 (patch)
tree0635fae57da76af9a11ce732d4faa9827a26fcb8
parent8ee2e244eb2d55f64b297efd13eed9137cb4ee43 (diff)
downloadnasm-4ea9cede34e39e69a3511aa2cc91f39d84cc68c2.tar.gz
nasm.nsi: remove COPYING; add LICENSE
The licensing information has been moved into file LICENSE. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r--nasm.nsi4
1 files changed, 2 insertions, 2 deletions
diff --git a/nasm.nsi b/nasm.nsi
index ae2e69b3..ba6b4a25 100644
--- a/nasm.nsi
+++ b/nasm.nsi
@@ -50,7 +50,7 @@ Section "${PACKAGE_NAME}"
SectionIn RO
SetOutPath "$INSTDIR\."
- File "COPYING"
+ File "LICENSE"
File "nasm.exe"
File "ndisasm.exe"
File "doc/nasmdoc.pdf"
@@ -102,7 +102,7 @@ Section "Uninstall"
Delete /rebootok "$INSTDIR\nasmdoc.pdf"
Delete /rebootok "$INSTDIR\nasm.exe"
Delete /rebootok "$INSTDIR\ldrdf.exe"
- Delete /rebootok "$INSTDIR\COPYING"
+ Delete /rebootok "$INSTDIR\LICENSE"
RMDir "$INSTDIR"
SectionEnd