Fixes a confusion in the MSI setup wrt versionupdate.properties.

cusax-fix
Lyubomir Marinov 17 years ago
parent e821476d88
commit 4084cb0a18

@ -342,6 +342,16 @@
<target name="build-installation-wix" <target name="build-installation-wix"
depends="clean-install-windows,version"> depends="clean-install-windows,version">
<!--
This versionupdate.properties isn't of interest to be MSI but is
necessary for the site
-->
<propertyfile file="${windows.app.dir}/versionupdate.properties">
<entry key="last_version" value="${sip-communicator.version}" />
<entry key="download_link"
value="http://download.sip-communicator.org/nightly/windows/${package.name}-${sip-communicator.version}.exe" />
</propertyfile>
<!-- <!--
Prepare for the execution of heat.exe (which is part of the Prepare for the execution of heat.exe (which is part of the
preparation for the execution of candle.exe) preparation for the execution of candle.exe)
@ -398,11 +408,14 @@
</fileset> </fileset>
</copy> </copy>
<propertyfile file="${light.dir}/versionupdate.properties"> <!--
<entry key="last_version" value="${sip-communicator.version}" /> This versionupdate.properties is the only of interest to the MSI
<entry key="download_link" i.e. it gets installed on the user machine.
value="http://download.sip-communicator.org/nightly/windows/${package.name}-${sip-communicator.version}.exe" /> -->
</propertyfile> <copy
file="${inst.resrc}/windows/versionupdate.properties"
todir="${light.dir}"
overwrite="true" />
<!-- Execute heat.exe --> <!-- Execute heat.exe -->
<exec <exec

Loading…
Cancel
Save