Ignore:
Timestamp:
2013-11-07T17:40:03+13:00 (10 years ago)
Author:
ak19
Message:

SVN version of GS3 grabs IsisGdl.macleopard for Lions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/build.xml

    r28610 r28611  
    648648  <!-- install-common-src and install-collection-building are mutually exclusive and either one or the other will be done depending on whether collection building is enabled or not -->
    649649  <!--before configuring build-src, make sure that gnome-lib is compiled up-->
    650   <target name="install" depends="init,compile-imagemagick,compile-gnome-lib,install-common-src,install-collection-building,install-runtime,install-solr-ext,setup-for-eclipse"
     650  <target name="install" depends="init,compile-imagemagick,compile-gnome-lib,install-common-src,install-collection-building,install-runtime,install-solr-ext,setup-for-eclipse,get-isisgdl"
    651651    description="Install Greenstone 3. Use this when you first checkout the code: 'ant prepare new-install'."/>
    652652
     
    10761076  </target>
    10771077
     1078  <!-- Until Mac Lions (64 bit) can generate a working IsisGdl, use the one generated on a Leopard -->
     1079  <target name="get-isisgdl">
     1080    <if>
     1081      <bool>
     1082    <and>
     1083      <contains string="${os.bin.dir}" substring="darwin" casesensitive="false"/>
     1084      <matches pattern="^(10\.7\.[4-9]|10\.[8-9]|1[1-9]|[2-9])" string="${os.version}"/>
     1085    </and>
     1086      </bool>
     1087      <get src="http://www.greenstone.org/caveat-emptor/IsisGdl.macleopard"
     1088        dest="${basedir}/gs2build/bin/${os.bin.dir}/IsisGdl"/>
     1089      <chmod file="${basedir}/gs2build/bin/${os.bin.dir}/IsisGdl" perm="755"/>
     1090    </if>
     1091  </target>
    10781092
    10791093  <target name="set-perl-shebangs" depends="perl-for-building">
Note: See TracChangeset for help on using the changeset viewer.