Changeset 10831


Ignore:
Timestamp:
2005-11-02T17:07:09+13:00 (18 years ago)
Author:
kjdon
Message:

untaring the XML-Parser on macs must occur after compilation, otherwise the new expat.bundle (or something) is screwed up

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/build.xml

    r10829 r10831  
    12951295   </target>
    12961296 
     1297  <!-- downloads a good XML-Parser -->
    12971298  <target name="get-macos-extra" depends="init" if="current.os.ismac"> 
    12981299      <get src="http://www.greenstone.org/gs3files/XML-Parser.tar.gz"
    12991300      dest="${gs2build.home}/perllib/cpan/XML-Parser.tar.gz"
    13001301      usetimestamp="true"/>
     1302  </target> 
     1303
     1304  <!-- untars the XML-Parser. need to do this after compiling in gs2build-->
     1305  <target name="install-macos-extra" depends="init" if="current.os.ismac">
    13011306    <untar src="${gs2build.home}/perllib/cpan/XML-Parser.tar.gz"
    13021307      dest="${gs2build.home}/perllib/cpan/"
    13031308      compression="gzip"/>
    1304     <delete file="${gs2build.home}/perllib/cpan/XML-Parser.tar.gz"/>
    1305   </target> 
    1306  
     1309  </target>
     1310
    13071311  <target name="rename-gs2build-files" depends="rename-gs2build-files-unix,rename-gs2build-files-windows"/>
    13081312
     
    14051409      <arg value="install"/>
    14061410    </exec>
     1411    <antcall target="install-macos-extra"/>
    14071412  </target>
    14081413    <!-- windows: -->
     
    15261531    <antcall target="clean-packages-c++"/>
    15271532    <antcall target="clean-gs2build"/>
     1533    <antcall target="install-macos-extra"/>
    15281534    <xslt in="build.xml" out="dist-build.xml" style="dist-resources/convert-build-xml.xsl"/>
    15291535    <delete dir="${basedir}/build"/>
Note: See TracChangeset for help on using the changeset viewer.