summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-04-06 19:37:30 -0700
committerH. Peter Anvin <hpa@zytor.com>2009-04-06 19:37:30 -0700
commit4c4177cb4d5af80ea4ac237537fb5381ba28a252 (patch)
treeeec1c0777ef321f1a50cc58bd70a65dcd150f860
parentd8979222e97d3aeb6f6ab8e31f2c7208e2ef0855 (diff)
downloadnasm-4c4177cb4d5af80ea4ac237537fb5381ba28a252.tar.gz
nasm.nsi: add COPYING to the list of files to package
-rw-r--r--nasm.nsi2
1 files changed, 2 insertions, 0 deletions
diff --git a/nasm.nsi b/nasm.nsi
index 5c33c981..84972aea 100644
--- a/nasm.nsi
+++ b/nasm.nsi
@@ -50,6 +50,7 @@ Section "${PACKAGE_NAME}"
SectionIn RO
SetOutPath "$INSTDIR\."
+ File "COPYING"
File "nasm.exe"
File "ndisasm.exe"
File "doc/nasmdoc.pdf"
@@ -97,6 +98,7 @@ Section "Uninstall"
Delete /rebootok "$INSTDIR\nasmdoc.pdf"
Delete /rebootok "$INSTDIR\nasm.exe"
Delete /rebootok "$INSTDIR\ldrdf.exe"
+ Delete /rebootok "$INSTDIR\COPYING"
RMDir "$INSTDIR"
SectionEnd