diff options
author | Andrew Lewman <andrew@torproject.org> | 2007-09-24 22:50:22 +0000 |
---|---|---|
committer | Andrew Lewman <andrew@torproject.org> | 2007-09-24 22:50:22 +0000 |
commit | 4068ad52975a0b065e126dd9f8acc3ff6b24b68f (patch) | |
tree | 00733ac800ab249ad56d787b1e50ae109cc81264 /contrib | |
parent | b396958d0812c45acb042a5d45ba67aa1959b29d (diff) | |
download | tor-4068ad52975a0b065e126dd9f8acc3ff6b24b68f.tar tor-4068ad52975a0b065e126dd9f8acc3ff6b24b68f.tar.gz |
NSI is happier now.
svn:r11617
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/polipo/polipo-mingw.nsi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/polipo/polipo-mingw.nsi b/contrib/polipo/polipo-mingw.nsi index cbae41c41..89a65cf40 100644 --- a/contrib/polipo/polipo-mingw.nsi +++ b/contrib/polipo/polipo-mingw.nsi @@ -39,7 +39,7 @@ VIAddVersionKey "FileVersion" "${VERSION}" !define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\win-uninstall.ico" !define MUI_HEADERIMAGE_BITMAP "${NSISDIR}\Contrib\Graphics\Header\win.bmp" !define MUI_HEADERIMAGE -!define MUI_FINISHPAGE_RUN '"$INSTDIR\polipo.exe" -c config' +;!define MUI_FINISHPAGE_RUN !define MUI_FINISHPAGE_LINK "Visit the Polipo website for the latest updates." !define MUI_FINISHPAGE_LINK_LOCATION ${WEBSITE} @@ -103,7 +103,7 @@ Section "Start Menu" StartMenu IfFileExists "$SMPROGRAMS\Polipo\*.*" "" +2 RMDir /r "$SMPROGRAMS\Polipo" CreateDirectory "$SMPROGRAMS\Polipo" - CreateShortCut "$SMPROGRAMS\Polipo\Polipo.lnk" '"$INSTDIR\polipo.exe" -c $INSTDIR\config' + CreateShortCut "$SMPROGRAMS\Polipo\Polipo.lnk" "$INSTDIR\polipo.exe" "-c config" CreateShortCut "$SMPROGRAMS\Polipo\Poliporc.lnk" "Notepad.exe" "$INSTDIR\config" CreateShortCut "$SMPROGRAMS\Polipo\Polipo Documentation.lnk" "$INSTDIR\www\index.html" CreateShortCut "$SMPROGRAMS\Polipo\Polipo Website.lnk" "$INSTDIR\Polipo Website.url" @@ -112,12 +112,12 @@ SectionEnd Section "Desktop" Desktop SetOutPath $INSTDIR - CreateShortCut "$DESKTOP\Polipo.lnk" '"$INSTDIR\polipo.exe" -c $INSTDIR\config' + CreateShortCut "$DESKTOP\Polipo.lnk" "$INSTDIR\polipo.exe" "-c config" SectionEnd Section /o "Run at startup" Startup SetOutPath $INSTDIR - CreateShortCut "$SMSTARTUP\Polipo.lnk" '"$INSTDIR\polipo.exe" -c $INSTDIR\config' "" "" "" SW_SHOWMINIMIZED + CreateShortCut "$SMSTARTUP\Polipo.lnk" "$INSTDIR\polipo.exe" "-c config" "" "" "" SW_SHOWMINIMIZED SectionEnd SubSectionEnd |