Ignore:
Timestamp:
2011-03-24T11:21:42+13:00 (13 years ago)
Author:
sjm84
Message:

Several changes to integrate FLAX release building as an option in the release kits

Location:
main/trunk/release-kits/shared/core/ant-scripts
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/release-kits/shared/core/ant-scripts/create-installer.xml

    r23493 r23811  
    130130        </rsr>
    131131
     132        <!-- If this is a FLAX installer then we need to change a few things -->
     133        <if><bool><equals arg1="${forward.install.flax}" arg2="true"/></bool>
     134            <dcff file="installer/build.xml" startTag="&lt;!-- NO FLAX START --&gt;" endTag="&lt;!-- NO FLAX END --&gt;" />
     135        <else>
     136            <dcff file="installer/build.xml" startTag="&lt;!-- FLAX START --&gt;" endTag="&lt;!-- FLAX END --&gt;" />
     137        </else>
     138        </if>
     139
    132140        <!-- EXT -->
    133141        <if><bool><equals arg1="${amp.enabled}" arg2="true"/></bool>
  • main/trunk/release-kits/shared/core/ant-scripts/shared.xml

    r23641 r23811  
    6161
    6262        <!-- the extra space for the dmg image in KB (mac wrapper) -->
    63             <property name="dmg.overhead" value="2048"/>
     63            <property name="dmg.overhead" value="4096"/>
    6464
    6565        <!-- current date and time -->
     
    347347    <!-- target to set version numbers in gli -->
    348348    <target name="gli-set-version-numbers">
    349 
     349        <if><bool><not><equals arg1="${with.gli.and.gems}" arg2="false"/></not></bool>
    350350            <!-- DICTIOANRY FILES (AboutDialog.Date) -->
    351351            <echo level="info">Changing AboutDialog.Date in all dictionaries</echo>
     
    374374            <echo level="info">Changing configuration version in gli/classes/xml/configRemote.xml</echo>
    375375            <rsr file="${glibasedir}/classes/xml/configRemote.xml" pattern="^(\s*&lt;Configuration.* version=&quot;)[^&quot;]*(&quot;.*&gt;)" replacement="$1${version}${version-extra}$2"/>
    376 
     376        </if>
    377377    </target>
    378378
Note: See TracChangeset for help on using the changeset viewer.