Repository: parquet-cpp Updated Branches: refs/heads/master 72edf0e22 -> 5d7786aa2
PARQUET-879: Use same configure command for Thrift Author: Uwe L. Korn <[email protected]> Closes #245 from xhochy/PARQUET-879 and squashes the following commits: a8270a5 [Uwe L. Korn] PARQUET-879: Use same configure command for Thrift Project: http://git-wip-us.apache.org/repos/asf/parquet-cpp/repo Commit: http://git-wip-us.apache.org/repos/asf/parquet-cpp/commit/5d7786aa Tree: http://git-wip-us.apache.org/repos/asf/parquet-cpp/tree/5d7786aa Diff: http://git-wip-us.apache.org/repos/asf/parquet-cpp/diff/5d7786aa Branch: refs/heads/master Commit: 5d7786aa202d4c0d5a7ff7f13369c5823b9efe94 Parents: 72edf0e Author: Uwe L. Korn <[email protected]> Authored: Tue Feb 14 08:44:43 2017 -0500 Committer: Wes McKinney <[email protected]> Committed: Tue Feb 14 08:44:43 2017 -0500 ---------------------------------------------------------------------- cmake_modules/ThirdpartyToolchain.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/parquet-cpp/blob/5d7786aa/cmake_modules/ThirdpartyToolchain.cmake ---------------------------------------------------------------------- diff --git a/cmake_modules/ThirdpartyToolchain.cmake b/cmake_modules/ThirdpartyToolchain.cmake index b150600..095fd82 100644 --- a/cmake_modules/ThirdpartyToolchain.cmake +++ b/cmake_modules/ThirdpartyToolchain.cmake @@ -69,7 +69,7 @@ if (NOT THRIFT_FOUND) ) else() ExternalProject_Add(thrift_ep - CONFIGURE_COMMAND ./configure "CFLAGS=${THRIFT_C_FLAGS}" "CXXFLAGS=${THRIFT_CXX_FLAGS}" --without-qt4 --without-c_glib --without-csharp --without-java --without-erlang --without-nodejs --without-lua --without-python --without-perl --without-php --without-php_extension --without-ruby --without-haskell --without-go --without-d --with-cpp "--prefix=${THRIFT_PREFIX}" + CONFIGURE_COMMAND ${THRIFT_CONFIGURE_COMMAND} BUILD_IN_SOURCE 1 # This is needed for 0.9.1 and can be removed for 0.9.3 again BUILD_COMMAND make clean
