You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by da...@apache.org on 2011/09/07 19:14:22 UTC

svn commit: r1166269 - in /pig/trunk: CHANGES.txt bin/pig

Author: daijy
Date: Wed Sep  7 17:14:22 2011
New Revision: 1166269

URL: http://svn.apache.org/viewvc?rev=1166269&view=rev
Log:
PIG-2239: Pig should use 'bin/hadoop jar pig-withouthadoop.jar' in bin/pig instead of forming java command itself

Modified:
    pig/trunk/CHANGES.txt
    pig/trunk/bin/pig

Modified: pig/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/pig/trunk/CHANGES.txt?rev=1166269&r1=1166268&r2=1166269&view=diff
==============================================================================
--- pig/trunk/CHANGES.txt (original)
+++ pig/trunk/CHANGES.txt Wed Sep  7 17:14:22 2011
@@ -24,8 +24,6 @@ INCOMPATIBLE CHANGES
 
 IMPROVEMENTS
 
-PIG-2239: Pig should use "bin/hadoop jar pig-withouthadoop.jar" in bin/pig instead of forming java command itself (daijy)
-
 PIG-2163: Improve nested cross to stream one relation (zjshen via daijy)
 
 PIG-2249: Enable pig e2e testing on EC2 (gates)
@@ -241,6 +239,8 @@ Release 0.9.1 - Unreleased
 
 IMPROVEMENTS
 
+PIG-2239: Pig should use "bin/hadoop jar pig-withouthadoop.jar" in bin/pig instead of forming java command itself (daijy)
+
 PIG-2213: Pig 0.9.1 Documentation (chandec via daijy)
 
 PIG-2221: Couldnt find documentation for ColumnMapKeyPrune optimization rule (chandec via daijy)

Modified: pig/trunk/bin/pig
URL: http://svn.apache.org/viewvc/pig/trunk/bin/pig?rev=1166269&r1=1166268&r2=1166269&view=diff
==============================================================================
--- pig/trunk/bin/pig (original)
+++ pig/trunk/bin/pig Wed Sep  7 17:14:22 2011
@@ -244,14 +244,6 @@ else
         exit 1
     fi
 
-    if [ -d "$PIG_HOME/build/ivy/lib/Pig" ]; then
-        HADOOP_LIB_DIR=$PIG_HOME/build/ivy/lib/Pig
-    else
-        HADOOP_LIB_DIR=$PIG_HOME/lib
-    fi
-    for f in $HADOOP_LIB_DIR/*.jar; do
-        CLASSPATH=${CLASSPATH}:$f;
-    done
     CLASS=org.apache.pig.Main
     if [ "$debug" == "true" ]; then
         echo "dry run:"