Created
July 20, 2018 06:33
-
-
Save trungkak/ea233b6ac0318aef978bb02f4761363b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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