From b2085ae49e38529cf082598cc857fd2e879a9539 Mon Sep 17 00:00:00 2001 From: John Garland Date: Tue, 24 Feb 2009 01:31:54 +0000 Subject: [PATCH] Remove dll registration --- win32/deluge.nsi | 33 ++++++++++++++++----------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/win32/deluge.nsi b/win32/deluge.nsi index 0c751acf0..a37b48d90 100644 --- a/win32/deluge.nsi +++ b/win32/deluge.nsi @@ -194,7 +194,22 @@ SubSection /e "Dependencies" dependencies ${install_MSI} LIBTORRENT_INSTALLER "$INSTDIR\Python\site-packages" ${install_ZIP} LIBTORRENT_DLL_ZIP "$SYSDIR" - RegDLL "$SYSDIR\${LIBTORRENT_DLL}" + + SectionEnd + +SubSectionEnd + +SubSection /e "Core" core + + Section "Deluge" deluge + + SectionIn RO + + ${install_MSI} DELUGE_INSTALLER "$INSTDIR\Deluge" + + SetOutPath "$INSTDIR\Deluge" + + WriteUninstaller "$INSTDIR\Deluge\uninstall.exe" SectionEnd @@ -221,19 +236,3 @@ Section "Uninstall" RMDir "$INSTDIR" SectionEnd - -SubSection /e "Core" core - - Section "Deluge" deluge - - SectionIn RO - - ${install_MSI} DELUGE_INSTALLER "$INSTDIR\Deluge" - - SetOutPath "$INSTDIR\Deluge" - - WriteUninstaller "$INSTDIR\Deluge\uninstall.exe" - - SectionEnd - -SubSectionEnd