From 4ea9cede34e39e69a3511aa2cc91f39d84cc68c2 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Mon, 6 Jul 2009 11:10:42 -0700 Subject: [PATCH] nasm.nsi: remove COPYING; add LICENSE The licensing information has been moved into file LICENSE. Signed-off-by: H. Peter Anvin --- nasm.nsi | 4 ++-- 1 file 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