You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by ni...@apache.org on 2007/12/19 06:28:11 UTC

svn commit: r605433 - in /lucene/hadoop/trunk: CHANGES.txt build.xml

Author: nigel
Date: Tue Dec 18 21:28:10 2007
New Revision: 605433

URL: http://svn.apache.org/viewvc?rev=605433&view=rev
Log:
HADOOP-2459. Fix package target so that src/docs/build files are not included in the release. Contributed by Nigel Daley.

Modified:
    lucene/hadoop/trunk/CHANGES.txt
    lucene/hadoop/trunk/build.xml

Modified: lucene/hadoop/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/hadoop/trunk/CHANGES.txt?rev=605433&r1=605432&r2=605433&view=diff
==============================================================================
--- lucene/hadoop/trunk/CHANGES.txt (original)
+++ lucene/hadoop/trunk/CHANGES.txt Tue Dec 18 21:28:10 2007
@@ -250,6 +250,9 @@
     in 1 byte chunks, causing performance degradation.
     (Raghu Angadi via dhruba)
 
+    HADOOP-2459. Fix package target so that src/docs/build files are not
+    included in the release.  (nigel)
+
 Branch 0.15 (unreleased)
 
   BUG FIXES

Modified: lucene/hadoop/trunk/build.xml
URL: http://svn.apache.org/viewvc/lucene/hadoop/trunk/build.xml?rev=605433&r1=605432&r2=605433&view=diff
==============================================================================
--- lucene/hadoop/trunk/build.xml (original)
+++ lucene/hadoop/trunk/build.xml Tue Dec 18 21:28:10 2007
@@ -721,7 +721,7 @@
     </copy>
 
     <copy todir="${dist.dir}/src" includeEmptyDirs="true">
-      <fileset dir="src" excludes="**/*.template"/>
+      <fileset dir="src" excludes="**/*.template **/docs/build/**/*"/>
     </copy>
   	
     <copy todir="${dist.dir}/c++" includeEmptyDirs="false">