From: <otm...@us...> - 2008-09-10 22:45:09
|
Revision: 5314 http://jython.svn.sourceforge.net/jython/?rev=5314&view=rev Author: otmarhumbel Date: 2008-09-10 22:45:07 +0000 (Wed, 10 Sep 2008) Log Message: ----------- since property cpythonlib.present is always true if jython is checked out correctly, but is evaluated too early (long before checkout) during a full-build, it has probably no usage any more Modified Paths: -------------- trunk/jython/build.xml Modified: trunk/jython/build.xml =================================================================== --- trunk/jython/build.xml 2008-09-10 18:36:16 UTC (rev 5313) +++ trunk/jython/build.xml 2008-09-10 22:45:07 UTC (rev 5314) @@ -162,7 +162,6 @@ <available property="informix.present" classname="com.informix.jdbc.IfxDriver" classpath="${informix.jar}" /> <available property="oracle.present" classname="oracle.jdbc.driver.OracleDriver" classpath="${oracle.jar}" /> - <available property="cpythonlib.present" file="${jython.base.dir}/CPythonLib.includes"/> <path id="test.classpath"> <path refid="main.classpath"/> @@ -667,7 +666,7 @@ </target> - <target name="copy-cpythonlib" if="cpythonlib.present"> + <target name="copy-cpythonlib"> <copy todir="${dist.dir}/Lib"> <fileset dir="${python.lib}" excludes="**/*.pyc, **/*.pyo" includesfile="${jython.base.dir}/CPythonLib.includes"> <!-- The include file gets all of CPythonLib's test directory, but we only want the ones from Jython's Lib. --> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |