Return-Path: X-Original-To: apmail-pig-commits-archive@www.apache.org Delivered-To: apmail-pig-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3B86F820F for ; Wed, 7 Sep 2011 17:14:45 +0000 (UTC) Received: (qmail 45112 invoked by uid 500); 7 Sep 2011 17:14:45 -0000 Delivered-To: apmail-pig-commits-archive@pig.apache.org Received: (qmail 45034 invoked by uid 500); 7 Sep 2011 17:14:44 -0000 Mailing-List: contact commits-help@pig.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@pig.apache.org Delivered-To: mailing list commits@pig.apache.org Received: (qmail 45018 invoked by uid 99); 7 Sep 2011 17:14:44 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Sep 2011 17:14:44 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Sep 2011 17:14:43 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id DE20E23889B3 for ; Wed, 7 Sep 2011 17:14:22 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1166269 - in /pig/trunk: CHANGES.txt bin/pig Date: Wed, 07 Sep 2011 17:14:22 -0000 To: commits@pig.apache.org From: daijy@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110907171422.DE20E23889B3@eris.apache.org> 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:"