You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@depot.apache.org by ni...@apache.org on 2004/05/12 23:37:16 UTC

svn commit: rev 10607 - incubator/depot/trunk/update

Author: nickchalko
Date: Wed May 12 16:37:15 2004
New Revision: 10607

Modified:
   incubator/depot/trunk/update/build.xml
Log:
Yea this basically works

Modified: incubator/depot/trunk/update/build.xml
==============================================================================
--- incubator/depot/trunk/update/build.xml	(original)
+++ incubator/depot/trunk/update/build.xml	Wed May 12 16:37:15 2004
@@ -49,15 +49,17 @@
 
 	<selector id="needs.vfs">
 		<!-- list the files that NEED vfs to compile -->
-		<filename name="org/**" />
+		<filename name="org/**/*Vfs*.java" casesensitive="false"  />
 	</selector>
 	<available property="vfs.present"
 	           classname="org.apache.commons.vfs"
 	           classpathref="depot-update.classpath" />
 
-	<selector id="conditional.compile123">
+	<selector id="conditional.compile">
 		<not>
-			<filename name="org/**" />
+			<or>
+				<selector refid="needs.vfs" unless="vfs.present" />
+			</or>
 		</not>
 	</selector>