Changeset 9717


Ignore:
Timestamp:
2005-04-19T11:31:23+12:00 (19 years ago)
Author:
kjdon
Message:

made the configure-tomcat if property tomcat.islocal instead of tomcat.present - this will be false when you first run install, and configure files wont get run.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ant-install-branch/gsdl3/build.xml

    r9715 r9717  
    369369
    370370  <!-- this target sets up tomcat for the first time, or resets it any subsequent times -->
    371   <target name="prepare-tomcat" depends="init,setup-proxy">
     371  <target name="prepare-tomcat" depends="init,setup-proxy" if="tomcat.islocal">
    372372    <get src="http://www.greenstone.org/gs3files/jakarta-tomcat-5.5.7.zip"
    373373      dest="${basedir}/comms/jakarta/jakarta-tomcat-5.5.7.zip"
     
    400400  </target>
    401401 
    402   <target name="configure-tomcat" depends="init" if="tomcat.present">
     402  <target name="configure-tomcat" depends="init" if="tomcat.islocal">
    403403    <!-- re-setup the server.xml file -->
    404404    <copy file="${basedir}/comms/jakarta/server.xml.in" tofile="${basedir}/comms/jakarta/tomcat/conf/server.xml" overwrite="true">
Note: See TracChangeset for help on using the changeset viewer.