You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by ha...@apache.org on 2015/03/18 13:20:28 UTC

hadoop git commit: MAPREDUCE-5556. mapred docs have incorrect classpath. Contributed by harsh.

Repository: hadoop
Updated Branches:
  refs/heads/branch-1 2943ee5e3 -> 927f13b6c


MAPREDUCE-5556. mapred docs have incorrect classpath. Contributed by harsh.


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/927f13b6
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/927f13b6
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/927f13b6

Branch: refs/heads/branch-1
Commit: 927f13b6cb0c5e500d59aa68d952fb6e845b7c37
Parents: 2943ee5
Author: Harsh J <ha...@cloudera.com>
Authored: Wed Mar 18 17:49:02 2015 +0530
Committer: Harsh J <ha...@cloudera.com>
Committed: Wed Mar 18 17:49:02 2015 +0530

----------------------------------------------------------------------
 CHANGES.txt                                                  | 2 ++
 src/docs/src/documentation/content/xdocs/mapred_tutorial.xml | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hadoop/blob/927f13b6/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index 33dccad..e6bfac1 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -66,6 +66,8 @@ Release 1.3.0 - unreleased
 
   BUG FIXES
 
+    MAPREDUCE-5556. mapred docs have incorrect classpath (harsh)
+
     MAPREDUCE-5272. Minor error in javadoc of TestMRWithDistributedCache
     (Zhijie Shen via harsh)
 

http://git-wip-us.apache.org/repos/asf/hadoop/blob/927f13b6/src/docs/src/documentation/content/xdocs/mapred_tutorial.xml
----------------------------------------------------------------------
diff --git a/src/docs/src/documentation/content/xdocs/mapred_tutorial.xml b/src/docs/src/documentation/content/xdocs/mapred_tutorial.xml
index 2f6e5c6..8f3efe1 100644
--- a/src/docs/src/documentation/content/xdocs/mapred_tutorial.xml
+++ b/src/docs/src/documentation/content/xdocs/mapred_tutorial.xml
@@ -550,7 +550,7 @@
         <p>
           <code>$ mkdir wordcount_classes</code><br/>
           <code>
-            $ javac -classpath ${HADOOP_HOME}/hadoop-${HADOOP_VERSION}-core.jar 
+            $ javac -classpath ${HADOOP_HOME}/hadoop-core-${HADOOP_VERSION}.jar
               -d wordcount_classes WordCount.java
           </code><br/>
           <code>$ jar -cvf /usr/joe/wordcount.jar -C wordcount_classes/ .</code>