You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by ol...@apache.org on 2008/02/26 20:47:34 UTC

svn commit: r631358 - in /incubator/pig/trunk: CHANGES.txt build.xml

Author: olga
Date: Tue Feb 26 11:47:33 2008
New Revision: 631358

URL: http://svn.apache.org/viewvc?rev=631358&view=rev
Log:
Fix for specifying any hadoop jar for compile

Modified:
    incubator/pig/trunk/CHANGES.txt
    incubator/pig/trunk/build.xml

Modified: incubator/pig/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/pig/trunk/CHANGES.txt?rev=631358&r1=631357&r2=631358&view=diff
==============================================================================
--- incubator/pig/trunk/CHANGES.txt (original)
+++ incubator/pig/trunk/CHANGES.txt Tue Feb 26 11:47:33 2008
@@ -130,3 +130,6 @@
 
 	PIG-110: Replaced code accidently merged out in PIG-32 fix that handled
 	flattening the combiner case. (gates and oae)
+
+    PIG-68 broke the build process by hardwiring hadoop15 jar for the purpose
+    of compile. Fixed that (olgan)

Modified: incubator/pig/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/pig/trunk/build.xml?rev=631358&r1=631357&r2=631358&view=diff
==============================================================================
--- incubator/pig/trunk/build.xml (original)
+++ incubator/pig/trunk/build.xml Tue Feb 26 11:47:33 2008
@@ -68,7 +68,7 @@
     <!-- ====================================================== -->
     <!-- setup the classpath -->
     <path id="classpath">
-        <fileset file="${lib.dir}/hadoop15.jar" />
+        <fileset file="${lib.dir}/${hadoop.jarfile}" />
         <fileset file="${lib.dir}/javacc.jar" />
         <fileset file="${lib.dir}/jsch-0.1.33.jar" />
         <fileset file="${lib.dir}/junit-4.1.jar" />