Skip to content

Instantly share code, notes, and snippets.

@trungkak
Created July 20, 2018 06:33
Show Gist options
  • Save trungkak/ea233b6ac0318aef978bb02f4761363b to your computer and use it in GitHub Desktop.
Save trungkak/ea233b6ac0318aef978bb02f4761363b to your computer and use it in GitHub Desktop.
# downgrade automake to 1.11.5
## remove current automake
sudo apt-get remove automake
sudo apt-get autoremove
## install automake 1.11.5
wget https://ftp.gnu.org/gnu/automake/automake-1.11.5.tar.gz
tar xf automake-1.12.5.tar.gz
cd automake-1.11.5/
./configure --prefix=/usr/local
make
make install
# install open-jdk-8
sudo apt-get install openjdk-8-jdk
# install ant
# install required libraries
# install thrift 0.9.0
./configure --without-java
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment