|
From: <sag...@us...> - 2010-08-10 20:42:52
|
Revision: 683
http://modplug.svn.sourceforge.net/modplug/?rev=683&view=rev
Author: saga-games
Date: 2010-08-10 20:42:46 +0000 (Tue, 10 Aug 2010)
Log Message:
-----------
[Imp] Installer: "_sf" is automatically added to the installer exe name for sourceforge builds now.
Modified Paths:
--------------
trunk/OpenMPT/installer/install-unmo3-free.iss
trunk/OpenMPT/installer/install.iss
Modified: trunk/OpenMPT/installer/install-unmo3-free.iss
===================================================================
--- trunk/OpenMPT/installer/install-unmo3-free.iss 2010-08-09 20:38:37 UTC (rev 682)
+++ trunk/OpenMPT/installer/install-unmo3-free.iss 2010-08-10 20:42:46 UTC (rev 683)
@@ -10,7 +10,7 @@
; To download and install ISPP and ISTool, get the Inno Setup QuickStart Pack from http://www.jrsoftware.org/isdl.php#qsp
#define DOWNLOAD_MO3
-
+#define BaseNameAddition "_sf"
#include "install.iss"
[_ISToolDownload]
Modified: trunk/OpenMPT/installer/install.iss
===================================================================
--- trunk/OpenMPT/installer/install.iss 2010-08-09 20:38:37 UTC (rev 682)
+++ trunk/OpenMPT/installer/install.iss 2010-08-10 20:42:46 UTC (rev 683)
@@ -11,6 +11,10 @@
#define GetAppVersion StringChange(GetFileProductVersion("..\mptrack\bin\mptrack.exe"), ",", ".")
#define GetAppVersionShort Copy(GetAppVersion, 1, 4)
+#ifndef BaseNameAddition
+#define BaseNameAddition
+#endif
+
[Setup]
AppId={{67903736-E9BB-4664-B148-F62BCAB4FA42}
AppVerName=OpenMPT {#GetAppVersionShort}
@@ -24,7 +28,7 @@
DefaultGroupName=OpenMPT
AllowNoIcons=yes
OutputDir=.\
-OutputBaseFilename=OpenMPT-{#GetAppVersion}-Setup
+OutputBaseFilename=OpenMPT-{#GetAppVersion}-Setup{#BaseNameAddition}
Compression=lzma2
SolidCompression=yes
WizardImageFile=install-big.bmp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|