Modified:
branches/5.0/Installer/main.iss
branches/5.0/Package.build
Log:
main.iss - fixed problem where the installer script was looking in the wrong place for
installtools
Package.build - added checksum
Modified: branches/5.0/Installer/main.iss
===================================================================
--- branches/5.0/Installer/main.iss 2007-08-15 15:34:09 UTC (rev 901)
+++ branches/5.0/Installer/main.iss 2007-08-15 20:05:35 UTC (rev 902)
@@ -40,7 +40,7 @@
Source: ..\Samples\*.*; DestDir: {app}\Samples; Excludes:
bin,obj,bin\debug,bin\release,obj\debug,obj\release; Flags: ignoreversion
createallsubdirs recursesubdirs
-Source: installtools.dll; DestDir: {app}; Attribs: hidden
+Source: binary\installtools.dll; DestDir: {app}; Attribs: hidden
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
Modified: branches/5.0/Package.build
===================================================================
--- branches/5.0/Package.build 2007-08-15 15:34:09 UTC (rev 901)
+++ branches/5.0/Package.build 2007-08-15 20:05:35 UTC (rev 902)
@@ -34,8 +34,15 @@
</target>
- <target name="package" description="Package target for a single edition"
- depends="PackageInstall, PackageSource, PackageZip"/>
+ <target name="package" description="Package target for a single edition"
+ depends="PackageInstall, PackageSource, PackageZip">
+ <checksum algorithm="MD5" fileext="MD5">
+ <fileset>
+ <include name="packages/*.exe"/>
+ <include name="packages/*.zip"/>
+ </fileset>
+ </checksum>
+ </target>
<target name="PackageInstall">
<exec if="${IsGPL}" program="iscc" workingdir="Installer" failonerror="true"
| Thread |
|---|
| • Connector/NET commit: r902 - in branches/5.0: . Installer | rburnett | 15 Aug |