From 2772cd49df4eec2f03e31028010efbb3e77d3cba Mon Sep 17 00:00:00 2001 From: John Garland Date: Sat, 21 Feb 2009 07:50:53 +0000 Subject: [PATCH] Fix ExecWait --- win32/deluge.nsi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/win32/deluge.nsi b/win32/deluge.nsi index b8ff36724..867a4c69f 100644 --- a/win32/deluge.nsi +++ b/win32/deluge.nsi @@ -18,7 +18,7 @@ ; Dependencies !define LIBTORRENT "libtorrent.msi" - !define LIBTORRENT_URL "http://waix.dl.sourceforge.net/sourceforge/libtorrent/python-libtorrent-0.14.2.win32-py2.5.msi" + !define LIBTORRENT_URL "http://transact.dl.sourceforge.net/sourceforge/libtorrent/python-libtorrent-0.14.2.win32-py2.5.msi" ; Interface Settings @@ -60,7 +60,7 @@ SectionEnd SubSection /e "Dependencies" deps - Section "Libtorrent" libtorrent + Section "Libtorrent" SecLibtorrent SectionIn 1 @@ -68,7 +68,7 @@ SubSection /e "Dependencies" deps NSISdl::download ${LIBTORRENT_URL} "$TEMP\${LIBTORRENT}" ; Install MSI - ExecWait 'msiexec /i "$INSTDIR\${PYTHON_RUNTIME_INSTALLER}" /passive TARGETDIR="$INSTDIR\Libtorrent"' + ExecWait 'msiexec /i "$TEMP\${LIBTORRENT}" /passive TARGETDIR="$INSTDIR\LibTorrent"' ; Clean up delete "$TEMP\${LIBTORRENT}"