You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2018/01/26 23:59:11 UTC

[arrow] branch master updated: ARROW-2032: [C++] ORC ep installs on each call to ninja build

This is an automated email from the ASF dual-hosted git repository.

wesm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 6299a9c  ARROW-2032: [C++] ORC ep installs on each call to ninja build
6299a9c is described below

commit 6299a9cfb314dc7a03fdafca41419a6be4300225
Author: Uwe L. Korn <uw...@xhochy.com>
AuthorDate: Fri Jan 26 18:59:05 2018 -0500

    ARROW-2032: [C++] ORC ep installs on each call to ninja build
    
    ExternalProject_add using git is sadly always triggering something.
    Using HTTP archives instead don't need to check if they are at the
    correct revision.
    
    Author: Uwe L. Korn <uw...@xhochy.com>
    
    Closes #1519 from xhochy/ARROW-2032 and squashes the following commits:
    
    f5ac8228 [Uwe L. Korn] ARROW-2032: [C++] ORC ep installs on each call to ninja build
---
 cpp/cmake_modules/ThirdpartyToolchain.cmake | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/cpp/cmake_modules/ThirdpartyToolchain.cmake b/cpp/cmake_modules/ThirdpartyToolchain.cmake
index 4f64434..69812b9 100644
--- a/cpp/cmake_modules/ThirdpartyToolchain.cmake
+++ b/cpp/cmake_modules/ThirdpartyToolchain.cmake
@@ -926,8 +926,7 @@ if (ARROW_ORC)
                       -DZLIB_HOME=${ZLIB_HOME})
 
   ExternalProject_Add(orc_ep
-    GIT_REPOSITORY "https://github.com/apache/orc"
-    GIT_TAG ${ORC_VERSION}
+    URL "https://github.com/apache/orc/archive/${ORC_VERSION}.tar.gz"
     BUILD_BYPRODUCTS ${ORC_STATIC_LIB}
     CMAKE_ARGS ${ORC_CMAKE_ARGS})
 

-- 
To stop receiving notification emails like this one, please contact
wesm@apache.org.