You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@parquet.apache.org by ga...@apache.org on 2019/10/02 13:08:11 UTC

[parquet-mr] branch master updated: PARQUET-1669: Disable compiling all libraries when building thrift (#688)

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

gabor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-mr.git


The following commit(s) were added to refs/heads/master by this push:
     new 600ffba  PARQUET-1669: Disable compiling all libraries when building thrift (#688)
600ffba is described below

commit 600ffba714552e2e8a29ffa4e2eec40a15060a4b
Author: Kengo Seki <se...@apache.org>
AuthorDate: Wed Oct 2 06:08:05 2019 -0700

    PARQUET-1669: Disable compiling all libraries when building thrift (#688)
---
 README.md                    | 2 +-
 dev/travis-before_install.sh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 36a9514..bda45e2 100644
--- a/README.md
+++ b/README.md
@@ -39,7 +39,7 @@ wget -nv http://archive.apache.org/dist/thrift/0.12.0/thrift-0.12.0.tar.gz
 tar xzf thrift-0.12.0.tar.gz
 cd thrift-0.12.0
 chmod +x ./configure
-./configure --disable-gen-erl --disable-gen-hs --without-c-glib --without-erlang --without-go --without-haskell --without-java --without-nodejs --without-php --without-python --without-ruby
+./configure --disable-libs
 sudo make install
 ```
 
diff --git a/dev/travis-before_install.sh b/dev/travis-before_install.sh
index 4ca8265..3575706 100644
--- a/dev/travis-before_install.sh
+++ b/dev/travis-before_install.sh
@@ -33,7 +33,7 @@ wget -nv https://archive.apache.org/dist/thrift/${THIFT_VERSION}/thrift-${THIFT_
 tar zxf thrift-${THIFT_VERSION}.tar.gz
 cd thrift-${THIFT_VERSION}
 chmod +x ./configure
-./configure --disable-gen-erl --disable-gen-hs --without-c-glib --without-erlang --without-go --without-haskell --without-java --without-nodejs --without-php --without-python --without-ruby
+./configure --disable-libs
 sudo make install
 cd ..
 branch_specific_script="dev/travis-before_install-${TRAVIS_BRANCH}.sh"