summary refs log tree commit diff stats
path: root/win32/installer/hexchat.iss.tt
diff options
context:
space:
mode:
authorTingPing <TingPing@users.noreply.github.com>2014-02-06 16:47:34 -0500
committerTingPing <TingPing@users.noreply.github.com>2014-02-06 16:47:34 -0500
commit8d77fd6a57b2cc54fbeae0a3d745cf60bfa9caec (patch)
treece34d9893328b1075f0c60f508ee5d7182d7fe4c /win32/installer/hexchat.iss.tt
parentb1b6255f38c21cae0f8d8028c303e3de38015f51 (diff)
win32: Update installer for new Perl
Diffstat (limited to 'win32/installer/hexchat.iss.tt')
-rw-r--r--win32/installer/hexchat.iss.tt8
1 files changed, 4 insertions, 4 deletions
diff --git a/win32/installer/hexchat.iss.tt b/win32/installer/hexchat.iss.tt
index c1ab9489..d8daec3c 100644
--- a/win32/installer/hexchat.iss.tt
+++ b/win32/installer/hexchat.iss.tt
@@ -101,7 +101,7 @@ Filename: "{app}\hexchat.exe"; Description: "Run HexChat after closing the Wizar
 Filename: "http://docs.hexchat.org/en/latest/changelog.html"; Description: "See what's changed"; Flags: shellexec runasoriginaluser postinstall skipifsilent unchecked
 Filename: "{tmp}\vcredist.exe"; Parameters: "/install /quiet /norestart"; StatusMsg: "Installing Visual C++ Redist"; Flags: skipifdoesntexist; Tasks: not portable
 Filename: "{tmp}\dotnet4.exe"; Parameters: "/q /norestart"; StatusMsg: "Installing .NET"; Components: xtm; Flags: skipifdoesntexist; Tasks: not portable
-Filename: "{tmp}\perl.msi"; StatusMsg: "Installing Perl"; Components: langs\perl; Flags: shellexec skipifdoesntexist; Tasks: not portable
+Filename: "{tmp}\perl.exe"; StatusMsg: "Installing Perl"; Components: langs\perl; Flags: shellexec skipifdoesntexist; Tasks: not portable
 Filename: "{tmp}\python.msi"; StatusMsg: "Installing Python"; Components: langs\python; Flags: shellexec skipifdoesntexist; Tasks: not portable
 Filename: "{tmp}\spelling-dicts.exe"; Parameters: "/verysilent"; StatusMsg: "Installing Spelling Dictionaries"; Components: spell; Flags: skipifdoesntexist; Tasks: not portable
 
@@ -252,12 +252,12 @@ begin
 	
 #if APPARCH == "x64"
 		REDIST := 'http://dl.hexchat.net/misc/vcredist_2013_x64.exe';
-		PERL := 'http://dl.hexchat.net/misc/perl/Perl%205.18.0%20x64.msi';
+		PERL := 'http://dl.hexchat.net/misc/perl/Perl-5.18.2-x64.exe';
 		PY2 := 'http://python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi';
 		PY3 := 'http://python.org/ftp/python/3.3.2/python-3.3.2.amd64.msi';
 #else
 		REDIST := 'http://dl.hexchat.net/misc/vcredist_2013_x86.exe';
-		PERL := 'http://dl.hexchat.net/misc/perl/Perl%205.18.0%20x86.msi';
+		PERL := 'http://dl.hexchat.net/misc/perl/Perl-5.18.2-x86.exe';
 		PY2 := 'http://python.org/ftp/python/2.7.5/python-2.7.5.msi';
 		PY3 := 'http://python.org/ftp/python/3.3.2/python-3.3.2.msi';
 #endif
@@ -274,7 +274,7 @@ begin
 			idpAddFile(SPELL, ExpandConstant('{tmp}\spelling-dicts.exe'));
 			
 		if IsComponentSelected('langs\perl') and not CheckDLL('perl518.dll') then
-			idpAddFile(PERL, ExpandConstant('{tmp}\perl.msi'));
+			idpAddFile(PERL, ExpandConstant('{tmp}\perl.exe'));
 			
 		if IsComponentSelected('langs\python\python2') and not CheckDLL('python27.dll') then
 			idpAddFile(PY2, ExpandConstant('{tmp}\python.msi'));