Ignore:
Timestamp:
2009-04-09T10:08:46+12:00 (15 years ago)
Author:
oranfry
Message:

changing the way the release kits make the greenstone2 distribution: instead of starting from a fresh export of greenstone, start from a copy of the compiled working copy

File:
1 edited

Legend:

Unmodified
Added
Removed
  • release-kits/shared/ant-scripts/init.xml

    r18072 r18929  
    359359        <!-- jar it all up -->
    360360        <jar
    361             destfile="${basedir}/compiled/uninstaller/uninst.jar"
     361            destfile="${basedir}/compiled/uninst.jar"
    362362            manifest="${rk.home}/uninstaller/manifest.mf"
    363363            basedir="${basedir}/compiled/uninstaller/build" />
     
    365365    </target>
    366366
    367     <!-- copy the uninstaller from the compiled directory to web distribution -->
     367    <!-- copy the uninstaller script from the rk to web distribution -->
    368368    <target name="insert-uninstaller">
    369         <copy file="compiled/uninstaller/uninst.jar" todir="distributions/web" />
    370369        <copy file="${rk.home}/uninstaller/Uninstall.${script-format}" todir="distributions/web" />
    371370    </target>
     
    391390        <unzip src="${rk.home}/windows/perl.zip" dest="${gsdl.basedir}/bin/windows"/>
    392391    </target>
    393 
     392    <target name="copy-compiled-to-dist">
     393        <delete dir="distributions/web"/>
     394        <mkdir dir="distributions"/>
     395        <exec executable="cp"><arg line="-r compiled distributions/web"/></exec>
     396    </target>
    394397
    395398</project>
Note: See TracChangeset for help on using the changeset viewer.