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 2008/06/19 05:42:45 UTC

svn commit: r669376 - in /hadoop/hbase/trunk: CHANGES.txt src/saveVersion.sh

Author: stack
Date: Wed Jun 18 20:42:45 2008
New Revision: 669376

URL: http://svn.apache.org/viewvc?rev=669376&view=rev
Log:
HBASE-683 can not get svn revision # at build time if locale is not english

Modified:
    hadoop/hbase/trunk/CHANGES.txt
    hadoop/hbase/trunk/src/saveVersion.sh

Modified: hadoop/hbase/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/hbase/trunk/CHANGES.txt?rev=669376&r1=669375&r2=669376&view=diff
==============================================================================
--- hadoop/hbase/trunk/CHANGES.txt (original)
+++ hadoop/hbase/trunk/CHANGES.txt Wed Jun 18 20:42:45 2008
@@ -58,6 +58,7 @@
    HBASE-694   HStore.rowAtOrBeforeFromMapFile() fails to locate the row if # of mapfiles >= 2
                (Rong-En Fan via Bryan)
    HBASE-652   dropping table fails silently if table isn't disabled
+   HBASE-683   can not get svn revision # at build time if locale is not english
    
   IMPROVEMENTS
    HBASE-559   MR example job to count table rows

Modified: hadoop/hbase/trunk/src/saveVersion.sh
URL: http://svn.apache.org/viewvc/hadoop/hbase/trunk/src/saveVersion.sh?rev=669376&r1=669375&r2=669376&view=diff
==============================================================================
--- hadoop/hbase/trunk/src/saveVersion.sh (original)
+++ hadoop/hbase/trunk/src/saveVersion.sh Wed Jun 18 20:42:45 2008
@@ -20,6 +20,8 @@
 # records the user, url, revision and timestamp.
 #
 # Copied from hadoop.
+unset LANG
+unset LC_CTYPE
 version=$1
 revision=`svn info | sed -n -e 's/Last Changed Rev: \(.*\)/\1/p'`
 url=`svn info | sed -n -e 's/URL: \(.*\)/\1/p'`