Return-Path: X-Original-To: apmail-hbase-commits-archive@www.apache.org Delivered-To: apmail-hbase-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 F293310BC9 for ; Fri, 9 Aug 2013 19:20:36 +0000 (UTC) Received: (qmail 73288 invoked by uid 500); 9 Aug 2013 19:20:36 -0000 Delivered-To: apmail-hbase-commits-archive@hbase.apache.org Received: (qmail 73067 invoked by uid 500); 9 Aug 2013 19:20:32 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 73060 invoked by uid 99); 9 Aug 2013 19:20:31 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Aug 2013 19:20:31 +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; Fri, 09 Aug 2013 19:20:30 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 39CE3238890D; Fri, 9 Aug 2013 19:20:10 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1512457 - /hbase/branches/0.94/bin/hbase Date: Fri, 09 Aug 2013 19:20:10 -0000 To: commits@hbase.apache.org From: jyates@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20130809192010.39CE3238890D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jyates Date: Fri Aug 9 19:20:09 2013 New Revision: 1512457 URL: http://svn.apache.org/r1512457 Log: HBASE-9097: Set HBASE_CLASSPATH before rest of the classpath Modified: hbase/branches/0.94/bin/hbase Modified: hbase/branches/0.94/bin/hbase URL: http://svn.apache.org/viewvc/hbase/branches/0.94/bin/hbase?rev=1512457&r1=1512456&r2=1512457&view=diff ============================================================================== --- hbase/branches/0.94/bin/hbase (original) +++ hbase/branches/0.94/bin/hbase Fri Aug 9 19:20:09 2013 @@ -186,9 +186,9 @@ for f in $HBASE_HOME/lib/*.jar; do CLASSPATH=${CLASSPATH}:$f; done -# Add user-specified CLASSPATH last +# Add user-specified CLASSPATH first if [ "$HBASE_CLASSPATH" != "" ]; then - CLASSPATH=${CLASSPATH}:${HBASE_CLASSPATH} + CLASSPATH=${HBASE_CLASSPATH}:${CLASSPATH} fi # default log directory & file