Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 7370F200B67 for ; Tue, 16 Aug 2016 19:04:59 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 722F8160ABC; Tue, 16 Aug 2016 17:04:59 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id C421F160A74 for ; Tue, 16 Aug 2016 19:04:58 +0200 (CEST) Received: (qmail 68492 invoked by uid 500); 16 Aug 2016 17:04:58 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 68477 invoked by uid 99); 16 Aug 2016 17:04:58 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Aug 2016 17:04:58 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id DFA8DE0100; Tue, 16 Aug 2016 17:04:57 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: dlmarion@apache.org To: commits@accumulo.apache.org Date: Tue, 16 Aug 2016 17:04:57 -0000 Message-Id: <78f0dc86bfd742bc92aa83df5121e797@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/3] accumulo git commit: ACCUMULO-4379: Make it clear as to which native library is missing archived-at: Tue, 16 Aug 2016 17:04:59 -0000 Repository: accumulo Updated Branches: refs/heads/1.8 30d065dee -> 711b4211d ACCUMULO-4379: Make it clear as to which native library is missing Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/02ac592c Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/02ac592c Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/02ac592c Branch: refs/heads/1.8 Commit: 02ac592cbd1b838da4f472a86f35ea62c3bf0a3e Parents: e1cd01f Author: Dave Marion Authored: Tue Aug 16 13:00:52 2016 -0400 Committer: Dave Marion Committed: Tue Aug 16 13:00:52 2016 -0400 ---------------------------------------------------------------------- assemble/bin/bootstrap_config.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/02ac592c/assemble/bin/bootstrap_config.sh ---------------------------------------------------------------------- diff --git a/assemble/bin/bootstrap_config.sh b/assemble/bin/bootstrap_config.sh index 42b83ad..ba695d5 100755 --- a/assemble/bin/bootstrap_config.sh +++ b/assemble/bin/bootstrap_config.sh @@ -357,11 +357,11 @@ fi if [[ "${TYPE}" = "native" ]]; then if [[ "$(uname)" = 'Linux' ]]; then if [[ -z $HADOOP_PREFIX ]]; then - echo "HADOOP_PREFIX not set cannot automatically configure LD_LIBRARY_PATH" + echo "WARNING: HADOOP_PREFIX not set, cannot automatically configure LD_LIBRARY_PATH to include Hadoop native libraries" else NATIVE_LIB=$(readlink -ef $(dirname $(for x in $(find $HADOOP_PREFIX -name libhadoop.so); do ld $x 2>/dev/null && echo $x && break; done) 2>>/dev/null) 2>>/dev/null) if [[ -z $NATIVE_LIB ]]; then - echo -e "Native libraries could not be found for your sytem in: $HADOOP_PREFIX" + echo -e "WARNING: The Hadoop native libraries could not be found for your sytem in: $HADOOP_PREFIX" else sed "/# Should the monitor/ i export LD_LIBRARY_PATH=${NATIVE_LIB}:\${LD_LIBRARY_PATH}" ${CONF_DIR}/$ACCUMULO_ENV > temp mv temp ${CONF_DIR}/$ACCUMULO_ENV @@ -369,6 +369,6 @@ if [[ "${TYPE}" = "native" ]]; then fi fi fi - echo -e "Please remember to compile the native libraries using the bin/build_native_library.sh script and to set the LD_LIBRARY_PATH variable in the ${CONF_DIR}/accumulo-env.sh script if needed." + echo -e "Please remember to compile the Accumulo native libraries using the bin/build_native_library.sh script and to set the LD_LIBRARY_PATH variable in the ${CONF_DIR}/accumulo-env.sh script if needed." fi echo "Setup complete"