You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2011/12/10 06:34:58 UTC

svn commit: r1212733 - in /hbase/branches/0.92: CHANGES.txt pom.xml

Author: stack
Date: Sat Dec 10 05:34:58 2011
New Revision: 1212733

URL: http://svn.apache.org/viewvc?rev=1212733&view=rev
Log:
HBASE-4922 [packaging] Assembly tars up hbase in a subdir; i.e. after untar hbase-0.92.0 has a subdir named 0.92.0

Modified:
    hbase/branches/0.92/CHANGES.txt
    hbase/branches/0.92/pom.xml

Modified: hbase/branches/0.92/CHANGES.txt
URL: http://svn.apache.org/viewvc/hbase/branches/0.92/CHANGES.txt?rev=1212733&r1=1212732&r2=1212733&view=diff
==============================================================================
--- hbase/branches/0.92/CHANGES.txt (original)
+++ hbase/branches/0.92/CHANGES.txt Sat Dec 10 05:34:58 2011
@@ -474,6 +474,9 @@ Release 0.92.0 - Unreleased
    HBASE-4995  Increase zk maxClientCnxns to give us some head room
    HBASE-4974  Remove some resources leaks on the tests (nkeywal)
    HBASE-4859  Correctly PreWarm HBCK ThreadPool
+   HBASE-4922  [packaging] Assembly tars up hbase in a subdir; i.e. after untar
+               hbase-0.92.0 has a subdir named 0.92.0
+               (Roman Shaposhnik)
 
   TESTS
    HBASE-4492  TestRollingRestart fails intermittently

Modified: hbase/branches/0.92/pom.xml
URL: http://svn.apache.org/viewvc/hbase/branches/0.92/pom.xml?rev=1212733&r1=1212732&r2=1212733&view=diff
==============================================================================
--- hbase/branches/0.92/pom.xml (original)
+++ hbase/branches/0.92/pom.xml Sat Dec 10 05:34:58 2011
@@ -707,10 +707,10 @@
 
                 <!-- Using Unix tar to preserve symlinks -->
                 <exec executable="tar" failonerror="yes"
-                  dir="${project.build.directory}/${project.build.finalName}">
+                  dir="${project.build.directory}">
                     <arg value="czf"/>
                     <arg value="${project.build.directory}/${project.build.finalName}.tar.gz"/>
-                    <arg value="."/>
+                    <arg value="${project.build.finalName}"/>
                 </exec>
 
               </target>