From 4c4177cb4d5af80ea4ac237537fb5381ba28a252 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Mon, 6 Apr 2009 19:37:30 -0700 Subject: [PATCH] nasm.nsi: add COPYING to the list of files to package --- nasm.nsi | 2 ++ 1 file changed, 2 insertions(+) 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 -- 2.11.4.GIT