Return-Path: X-Original-To: apmail-zookeeper-commits-archive@www.apache.org Delivered-To: apmail-zookeeper-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 9B6EB9738 for ; Wed, 5 Oct 2011 18:21:15 +0000 (UTC) Received: (qmail 51455 invoked by uid 500); 5 Oct 2011 18:21:15 -0000 Delivered-To: apmail-zookeeper-commits-archive@zookeeper.apache.org Received: (qmail 51424 invoked by uid 500); 5 Oct 2011 18:21:15 -0000 Mailing-List: contact commits-help@zookeeper.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ Delivered-To: mailing list commits@zookeeper.apache.org Received: (qmail 51414 invoked by uid 99); 5 Oct 2011 18:21:15 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Oct 2011 18:21:15 +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, 05 Oct 2011 18:21:12 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 9AAB92388A02 for ; Wed, 5 Oct 2011 18:20:50 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r1179362 - in /zookeeper/branches/branch-3.4: CHANGES.txt bin/zkEnv.sh build.xml Date: Wed, 05 Oct 2011 18:20:50 -0000 To: commits@zookeeper.apache.org From: phunt@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111005182050.9AAB92388A02@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: phunt Date: Wed Oct 5 18:20:50 2011 New Revision: 1179362 URL: http://svn.apache.org/viewvc?rev=1179362&view=rev Log: ZOOKEEPER-1190. ant package is not including many of the bin scripts in the package (zkServer.sh for example) (Eric Yang via phunt) Modified: zookeeper/branches/branch-3.4/CHANGES.txt zookeeper/branches/branch-3.4/bin/zkEnv.sh zookeeper/branches/branch-3.4/build.xml Modified: zookeeper/branches/branch-3.4/CHANGES.txt URL: http://svn.apache.org/viewvc/zookeeper/branches/branch-3.4/CHANGES.txt?rev=1179362&r1=1179361&r2=1179362&view=diff ============================================================================== --- zookeeper/branches/branch-3.4/CHANGES.txt (original) +++ zookeeper/branches/branch-3.4/CHANGES.txt Wed Oct 5 18:20:50 2011 @@ -342,6 +342,9 @@ BUGFIXES: ZOOKEEPER-1212. zkServer.sh stop action is not conformat with LSB para 20.2 Init Script Actions (Roman Shaposhnik via phunt) + ZOOKEEPER-1190. ant package is not including many of the bin scripts + in the package (zkServer.sh for example) (Eric Yang via phunt) + IMPROVEMENTS: ZOOKEEPER-724. Improve junit test integration - log harness information (phunt via mahadev) Modified: zookeeper/branches/branch-3.4/bin/zkEnv.sh URL: http://svn.apache.org/viewvc/zookeeper/branches/branch-3.4/bin/zkEnv.sh?rev=1179362&r1=1179361&r2=1179362&view=diff ============================================================================== --- zookeeper/branches/branch-3.4/bin/zkEnv.sh (original) +++ zookeeper/branches/branch-3.4/bin/zkEnv.sh Wed Oct 5 18:20:50 2011 @@ -75,10 +75,15 @@ do CLASSPATH="$i:$CLASSPATH" done -#make it work in the release -if [ -d ${ZOOKEEPER_PREFIX}/share/zookeeper ]; then +#make it work in the binary package +if [ -e ${ZOOKEEPER_PREFIX}/share/zookeeper/zookeeper-*.jar ]; then LIBPATH="${ZOOKEEPER_PREFIX}"/share/zookeeper/*.jar else + #release tarball format + for i in "$ZOOBINDIR"/../zookeeper-*.jar + do + CLASSPATH="$i:$CLASSPATH" + done LIBPATH="${ZOOBINDIR}"/../lib/*.jar fi Modified: zookeeper/branches/branch-3.4/build.xml URL: http://svn.apache.org/viewvc/zookeeper/branches/branch-3.4/build.xml?rev=1179362&r1=1179361&r2=1179362&view=diff ============================================================================== --- zookeeper/branches/branch-3.4/build.xml (original) +++ zookeeper/branches/branch-3.4/build.xml Wed Oct 5 18:20:50 2011 @@ -632,11 +632,120 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -811,7 +920,7 @@ - @@ -832,7 +941,7 @@ - +