You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by mr...@apache.org on 2007/04/16 15:29:50 UTC

svn commit: r529234 - /incubator/ode/trunk/tools-bin/build.xml

Author: mriou
Date: Mon Apr 16 06:29:49 2007
New Revision: 529234

URL: http://svn.apache.org/viewvc?view=rev&rev=529234
Log:
No doc in the distro, README is in the root directory.

Modified:
    incubator/ode/trunk/tools-bin/build.xml

Modified: incubator/ode/trunk/tools-bin/build.xml
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/tools-bin/build.xml?view=diff&rev=529234&r1=529233&r2=529234
==============================================================================
--- incubator/ode/trunk/tools-bin/build.xml (original)
+++ incubator/ode/trunk/tools-bin/build.xml Mon Apr 16 06:29:49 2007
@@ -25,10 +25,8 @@
 
     <property name="src" value="src/main" />
     <property name="src.bin" value="${src}/dist/bin" />
-    <property name="src.doc" value="${src}/dist/doc" />
     <property name="stage" location="target/stage" />
     <property name="stage.bin" location="${stage}/bin" />
-    <property name="stage.doc" location="${stage}/doc" />
 
 
     <target name="tarball" depends="stage">
@@ -38,7 +36,7 @@
         </tar>
     </target>
 
-    <target name="stage" depends="stage_executables, stage_doc" description="stage a distribution"/>
+    <target name="stage" depends="stage_executables" description="stage a distribution"/>
 
     <!-- Make all the UNIX/Windows executables. -->
     <target name="stage_executables">
@@ -52,12 +50,12 @@
         <chmod perm="755" dir="${stage.bin}" includes="*" excludes="*.bat" />
     </target>
 
-    <target name="stage_doc">
+    <!-- target name="stage_doc">
         <copy todir="${stage.doc}" overwrite="true">
             <fileset dir="${src.doc}">
                 <include name="*.*" />
             </fileset>
         </copy>
-    </target>
+    </target -->
 
 </project>