From: <cg...@us...> - 2009-07-19 06:17:03
|
Revision: 6545 http://jython.svn.sourceforge.net/jython/?rev=6545&view=rev Author: cgroves Date: 2009-07-19 06:16:59 +0000 (Sun, 19 Jul 2009) Log Message: ----------- Properties are fixed once they're set, so there's no need to set them conditionally. Don't force an overwrite on the registry file in dev builds. Modified Paths: -------------- trunk/jython/build.xml Modified: trunk/jython/build.xml =================================================================== --- trunk/jython/build.xml 2009-07-19 05:35:22 UTC (rev 6544) +++ trunk/jython/build.xml 2009-07-19 06:16:59 UTC (rev 6545) @@ -367,11 +367,7 @@ <!-- skip-brand can be set in ant.properties or as a system property to keep from updating the version.properties file and making the jar on every developer build. --> <target name="brand-version" depends="init, svnversion" unless="skip-brand"> - <condition property="build.svn.revision" value=""> - <not> - <isset property="build.svn.revision"/> - </not> - </condition> + <property name="build.svn.revision" value=""/> <tstamp> <format property="build.date" pattern="MMM d yyyy" offset="0"/> <format property="build.time" pattern="HH:mm:ss" offset="0"/> @@ -719,7 +715,7 @@ </chmod> <!-- copy the registry --> - <copy todir="${dist.dir}" file="${jython.base.dir}/registry" preservelastmodified="true" overwrite="true" /> + <copy todir="${dist.dir}" file="${jython.base.dir}/registry" preservelastmodified="true"/> </target> <target name="copy-cpythonlib"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |