All of the copies now preserve the last modified date, which should fix

SF bug #751960.


git-svn-id: http://scm.dspace.org/svn/repo/trunk@683 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
Robert Tansley
2003-06-10 19:22:27 +00:00
parent 17bfff5565
commit efff9a7f84

View File

@@ -166,7 +166,7 @@ Common usage:
<arg value="${dspace.dir}/lib" /> <arg value="${dspace.dir}/lib" />
<arg value="${dspace.dir}/oai/WEB-INF/lib" /> <arg value="${dspace.dir}/oai/WEB-INF/lib" />
</exec> </exec>
<copy todir="${dspace.dir}/bin"> <copy todir="${dspace.dir}/bin" preservelastmodified="true">
<fileset dir="bin"/> <fileset dir="bin"/>
</copy> </copy>
<exec executable="chmod"> <exec executable="chmod">
@@ -174,10 +174,10 @@ Common usage:
<arg value="u+x" /> <arg value="u+x" />
<arg value="${dspace.dir}/bin" /> <arg value="${dspace.dir}/bin" />
</exec> </exec>
<copy todir="${dspace.dir}/lib"> <copy todir="${dspace.dir}/lib" preservelastmodified="true">
<fileset dir="lib"/> <fileset dir="lib"/>
</copy> </copy>
<copy todir="${dspace.dir}/jsp"> <copy todir="${dspace.dir}/jsp" preservelastmodified="true">
<fileset dir="jsp"/> <fileset dir="jsp"/>
</copy> </copy>
<jar jarfile="${dspace.dir}/lib/dspace.jar" <jar jarfile="${dspace.dir}/lib/dspace.jar"
@@ -196,11 +196,12 @@ Common usage:
<target name="install_code" <target name="install_code"
depends="update" depends="update"
description="Do a fresh install of the system, not touching database"> description="Do a fresh install of the system, not touching database">
<copy todir="${dspace.dir}/config"> <copy todir="${dspace.dir}/config" preservelastmodified="true">
<fileset dir="${basedir}/config"/> <fileset dir="${basedir}/config"/>
</copy> </copy>
<copy file="${basedir}/etc/log4j.build.properties" <copy file="${basedir}/etc/log4j.build.properties"
tofile="${dspace.dir}/config/log4j.properties"/> tofile="${dspace.dir}/config/log4j.properties"
preservelastmodified="true"/>
</target> </target>