Ignore:
Timestamp:
2009-05-18T12:23:39+12:00 (15 years ago)
Author:
oranfry
Message:

added code to build.xml for linux installer to copy files from cdrom, in addition to the code to copy from lzma files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • release-kits/lirk2/installer/build.xml

    r19256 r19503  
    3636
    3737        <echo>Installing Core Files</echo>
     38
     39        <!-- web copies from compressed lzma files, cdrom copies from folders -->
     40
     41        <!-- start web -->
    3842        <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="core.lzma"/></patternset></unzip>
    3943        <sevenzip task="decode" input="${basedir}/core.lzma" output="${basedir}/core.comp"/>
     
    4145        <unzip src="${basedir}/core.comp" dest="${installDir}"/>
    4246        <delete file="core.comp"/>
     47        <!-- end web -->
     48
     49        <!-- start cdrom -->
     50        <copy todir="${installDir}">
     51            <fileset dir="${cd.dir}/Software/core/all"/>
     52            <fileset dir="${cd.dir}/Software/core/linux"/>
     53        </copy>
     54        <!-- end cdrom -->
    4355
    4456        <echo>Setting Binaries to Executable</echo>
Note: See TracChangeset for help on using the changeset viewer.