From e5ea0ce4a6a05bf3585f71ad108a3bc4bfe35ef1 Mon Sep 17 00:00:00 2001 From: Tsz-wo Sze Date: Fri, 31 Jul 2009 21:37:23 +0000 Subject: [PATCH] HADOOP-6172. Fix jar file names in hadoop-config.sh and include ${build.src} as a part of the source list in build.xml. Contributed by Hong Tang git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@799751 13f79535-47bb-0310-9956-ffa450edef68 --- CHANGES.txt | 5 ++++- bin/hadoop-config.sh | 2 +- build.xml | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index c46d96c3c6..53f006902b 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -888,7 +888,7 @@ Trunk (unreleased changes) HADOOP-6137. Fix project specific test-patch requirements (Giridharan Kesavan) - HADOOP-6138. Eliminate the depracate warnings introduced by H-5438. + HADOOP-6138. Eliminate the deprecated warnings introduced by H-5438. (He Yongqiang via szetszwo) HADOOP-6132. RPC client create an extra connection because of incorrect @@ -897,6 +897,9 @@ Trunk (unreleased changes) HADOOP-6123. Add missing classpaths in hadoop-config.sh. (Sharad Agarwal via szetszwo) + HADOOP-6172. Fix jar file names in hadoop-config.sh and include ${build.src} + as a part of the source list in build.xml. (Hong Tang via szetszwo) + Release 0.20.1 - Unreleased INCOMPATIBLE CHANGES diff --git a/bin/hadoop-config.sh b/bin/hadoop-config.sh index 0b12a84f14..7d4406b36e 100644 --- a/bin/hadoop-config.sh +++ b/bin/hadoop-config.sh @@ -126,7 +126,7 @@ IFS= if [ -d "$HADOOP_CORE_HOME/webapps" ]; then CLASSPATH=${CLASSPATH}:$HADOOP_CORE_HOME fi -for f in $HADOOP_CORE_HOME/hadoop-*-core.jar; do +for f in $HADOOP_CORE_HOME/hadoop-core-*.jar; do CLASSPATH=${CLASSPATH}:$f; done diff --git a/build.xml b/build.xml index 89920a33df..0fb388239d 100644 --- a/build.xml +++ b/build.xml @@ -294,7 +294,7 @@