This is an automated email from the ASF dual-hosted git repository.
mwalch pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/master by this push:
new f5a4f82 Updated accumulo-env.sh to include existing CLASSPATH (#750)
f5a4f82 is described below
commit f5a4f826ccfde1310c22215041287627866c7953
Author: Mike Walch <mwalch@apache.org>
AuthorDate: Wed Nov 7 10:11:07 2018 -0500
Updated accumulo-env.sh to include existing CLASSPATH (#750)
---
assemble/conf/accumulo-env.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/assemble/conf/accumulo-env.sh b/assemble/conf/accumulo-env.sh
index 8a2c851..d1ef0b9 100644
--- a/assemble/conf/accumulo-env.sh
+++ b/assemble/conf/accumulo-env.sh
@@ -50,8 +50,8 @@ if [ ! -d "$HADOOP_HOME" ]; then
exit 1
fi
-## Add external Hadoop & Zookeeper dependencies to CLASSPATH.
-CLASSPATH="${conf}:${lib}/*:${HADOOP_CONF_DIR}:${ZOOKEEPER_HOME}/*:${HADOOP_HOME}/share/hadoop/client/*"
+## Build using existing CLASSPATH, conf/ directory, dependencies in lib/, and external Hadoop
& Zookeeper dependencies
+CLASSPATH="${CLASSPATH}:${conf}:${lib}/*:${HADOOP_CONF_DIR}:${ZOOKEEPER_HOME}/*:${HADOOP_HOME}/share/hadoop/client/*"
export CLASSPATH
##################################################################
|