You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by hi...@apache.org on 2006/06/20 11:08:58 UTC

svn commit: r415577 - /incubator/harmony/enhanced/classlib/trunk/make/properties.xml

Author: hindessm
Date: Tue Jun 20 02:08:58 2006
New Revision: 415577

URL: http://svn.apache.org/viewvc?rev=415577&view=rev
Log:
Allow for movement of module build.xml files.

Modified:
    incubator/harmony/enhanced/classlib/trunk/make/properties.xml

Modified: incubator/harmony/enhanced/classlib/trunk/make/properties.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/make/properties.xml?rev=415577&r1=415576&r2=415577&view=diff
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/make/properties.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/make/properties.xml Tue Jun 20 02:08:58 2006
@@ -176,10 +176,13 @@
     <target name="call-modules-all" unless="build.module">
         <subant target="${target}">
             <fileset dir="modules">
+                <include name="*/build.xml" />
+                <exclude name="rmi*/build.xml" />
                 <include name="*/make/build.xml" />
                 <exclude name="rmi*/make/build.xml" />
             </fileset>
             <fileset dir="modules">
+                <include name="${hy.rmi.module}/build.xml" />
                 <include name="${hy.rmi.module}/make/build.xml" />
             </fileset>
         </subant>
@@ -188,6 +191,7 @@
     <target name="call-modules-one" if="build.module">
         <subant target="${target}">
             <fileset dir="modules">
+                <include name="${build.module}/build.xml" />
                 <include name="${build.module}/make/build.xml" />
             </fileset>
         </subant>