You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2019/06/17 03:34:18 UTC

[arrow] branch master updated: ARROW-5624: [C++] Fix typo causing build failure when -Duriparser_SOURCE=BUNDLED

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

kou 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 61781d4  ARROW-5624: [C++] Fix typo causing build failure when -Duriparser_SOURCE=BUNDLED
61781d4 is described below

commit 61781d4ac0d5b7617340c840820b781a1f60161a
Author: Wes McKinney <we...@apache.org>
AuthorDate: Mon Jun 17 12:34:08 2019 +0900

    ARROW-5624: [C++] Fix typo causing build failure when -Duriparser_SOURCE=BUNDLED
    
    Author: Wes McKinney <we...@apache.org>
    
    Closes #4590 from wesm/fix-uriparser and squashes the following commits:
    
    408f4cf3a <Wes McKinney> -Duriparser_SOURCE=BUNDLED is broken
---
 cpp/cmake_modules/ThirdpartyToolchain.cmake | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cpp/cmake_modules/ThirdpartyToolchain.cmake b/cpp/cmake_modules/ThirdpartyToolchain.cmake
index eed156d..f022267 100644
--- a/cpp/cmake_modules/ThirdpartyToolchain.cmake
+++ b/cpp/cmake_modules/ThirdpartyToolchain.cmake
@@ -619,7 +619,7 @@ if(ARROW_WITH_URIPARSER)
       build_uriparser()
     endif()
   elseif(uriparser_SOURCE STREQUAL "BUNDLED")
-    build_rapidjson()
+    build_uriparser()
   elseif(uriparser_SOURCE STREQUAL "SYSTEM")
     # Debian does not ship cmake configs for uriparser
     find_package(uriparser ${ARROW_URIPARSER_REQUIRED_VERSION} QUIET)