You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by mc...@apache.org on 2004/06/13 17:40:13 UTC

svn commit: rev 21164 - avalon/trunk/central/system/build

Author: mcconnell
Date: Sun Jun 13 08:40:13 2004
New Revision: 21164

Added:
   avalon/trunk/central/system/build/integrity.xml   (contents, props changed)
Log:
add build file that does a sanity check from the top-level build

Added: avalon/trunk/central/system/build/integrity.xml
==============================================================================
--- (empty file)
+++ avalon/trunk/central/system/build/integrity.xml	Sun Jun 13 08:40:13 2004
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<project name="integrity" default="check-for-project" basedir="." xmlns:x="antlib:org.apache.avalon.tools">
+
+  <available property="project.available" classname="org.apache.avalon.tools.home.Home"/>
+
+  <target name="check-for-project" unless="project.available">
+    <echo>
+#--------------------------------------------------------------------------------
+# Please invoke the bootstrap target in order to install prerequisite resources
+# and tools necessary to build avalon.
+#
+# $ ant bootstrap
+#
+# Once the bootstrap resources have been build you can proceed with any of the 
+# classic build targets. 
+#--------------------------------------------------------------------------------      
+    </echo>
+    <fail message="Bootstrap resources not present."/>
+  </target>
+
+</project>

---------------------------------------------------------------------
To unsubscribe, e-mail: cvs-unsubscribe@avalon.apache.org
For additional commands, e-mail: cvs-help@avalon.apache.org