You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by va...@apache.org on 2006/12/27 14:47:40 UTC

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

Author: varlax
Date: Wed Dec 27 05:47:40 2006
New Revision: 490503

URL: http://svn.apache.org/viewvc?view=rev&rev=490503
Log:
Applied HARMONY-2845 [classlib][build] new option to exclude some modules from the build added

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

Modified: harmony/enhanced/classlib/trunk/make/properties.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/make/properties.xml?view=diff&rev=490503&r1=490502&r2=490503
==============================================================================
--- harmony/enhanced/classlib/trunk/make/properties.xml (original)
+++ harmony/enhanced/classlib/trunk/make/properties.xml Wed Dec 27 05:47:40 2006
@@ -190,6 +190,7 @@
 
     <!-- default property for call-modules macro - i.e. all modules -->
     <property name="build.module" value="*" />
+    <property name="exclude.module" value="nothing" />
 
     <target name="echo" depends="svn-prop, svn-info"
             description="Display the properties defined by this ant file" >
@@ -307,7 +308,7 @@
         <attribute name="target" />
         <sequential>
             <subant target="@{target}">
-                <dirset dir="modules" includes="${build.module}" />
+                <dirset dir="modules" includes="${build.module}" excludes="${exclude.module}" />
             </subant>
         </sequential>
     </macrodef>