You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by na...@apache.org on 2010/10/06 22:56:17 UTC

svn commit: r1005246 - in /hadoop/hive/branches/branch-0.6: CHANGES.txt build.xml

Author: namit
Date: Wed Oct  6 20:56:17 2010
New Revision: 1005246

URL: http://svn.apache.org/viewvc?rev=1005246&view=rev
Log:
HIVE-1693 Make the compile target depend on thrift.home
(Eli Collins via namit)


Modified:
    hadoop/hive/branches/branch-0.6/CHANGES.txt
    hadoop/hive/branches/branch-0.6/build.xml

Modified: hadoop/hive/branches/branch-0.6/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/hive/branches/branch-0.6/CHANGES.txt?rev=1005246&r1=1005245&r2=1005246&view=diff
==============================================================================
--- hadoop/hive/branches/branch-0.6/CHANGES.txt (original)
+++ hadoop/hive/branches/branch-0.6/CHANGES.txt Wed Oct  6 20:56:17 2010
@@ -251,6 +251,9 @@ Release 0.6.0 -  Unreleased
     HIVE-1364 Increase the maximum length of various metastore fields,
     and remove TYPE_NAME from COLUMNS primary key (Carl Steinbach via namit)
 
+    HIVE-1693 Make the compile target depend on thrift.home
+    (Eli Collins via namit)
+
   OPTIMIZATIONS
 
     HIVE-1348. Move inputFileChanged() from ExecMapper to where it is needed

Modified: hadoop/hive/branches/branch-0.6/build.xml
URL: http://svn.apache.org/viewvc/hadoop/hive/branches/branch-0.6/build.xml?rev=1005246&r1=1005245&r2=1005246&view=diff
==============================================================================
--- hadoop/hive/branches/branch-0.6/build.xml (original)
+++ hadoop/hive/branches/branch-0.6/build.xml Wed Oct  6 20:56:17 2010
@@ -145,6 +145,10 @@
   <target name="compile-cpp"
           depends="init"
           description="Build CPP artifacts" >
+    <fail unless="thrift.home">
+      You must set thrift.home to the absolute path of your
+      local Thrift installation.
+    </fail>
     <iterate-cpp target="compile-cpp"/>
   </target>