diff options
author | Andrew Lewman <andrew@torproject.org> | 2008-01-11 15:24:54 +0000 |
---|---|---|
committer | Andrew Lewman <andrew@torproject.org> | 2008-01-11 15:24:54 +0000 |
commit | d6b53010076441d4de21e1c4ddf26d2a69dc9fbf (patch) | |
tree | 8457558b0d1f254276ec7ce65fc9ce345f9f5c90 /contrib | |
parent | 6ee5328ac543692822285d4a0b0ddf1660597b46 (diff) | |
download | tor-d6b53010076441d4de21e1c4ddf26d2a69dc9fbf.tar.gz tor-d6b53010076441d4de21e1c4ddf26d2a69dc9fbf.zip |
fix things to make nsis happy
svn:r13110
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 73c9782587..37e7356057 100644 --- a/contrib/polipo/polipo-mingw.nsi +++ b/contrib/polipo/polipo-mingw.nsi @@ -6,7 +6,7 @@ ; !include "MUI.nsh" -!define VERSION "1.0.4" +!define VERSION "1.0.4.0" !define INSTALLER "polipo-${VERSION}-win32.exe" !define WEBSITE "http://www.pps.jussieu.fr/~jch/software/polipo/" @@ -70,7 +70,7 @@ Section "Polipo" Polipo File "${BIN}\polipo.exe" File "${BIN}\COPYING" File "${BIN}\CHANGES" - File "${BIN}\config.windows" + File "${BIN}\config.sample" File "${BIN}\forbidden.sample" File "${BIN}\README.Windows" WriteIniStr "$INSTDIR\Polipo Website.url" "InternetShortcut" "URL" ${WEBSITE} @@ -84,9 +84,9 @@ Section "Polipo" Polipo Delete $INSTDIR\config Goto endifconfig yesreplace: - StrCpy $configfile ".\config.windows" + StrCpy $configfile ".\config.sample" endifconfig: - File /oname=$configfile ".\config.windows" + File /oname=$configfile ".\config.sample" IfFileExists "$INSTDIR\www\*.*" "" endifwebroot CreateDirectory "$INSTDIR\www" endifwebroot: |