Last active
April 3, 2024 12:56
-
-
Save tkuchiki/543e277a2f7221a7833a to your computer and use it in GitHub Desktop.
install autoconf 2.69 for CentOS 6
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
curl -L -O http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz | |
tar zxf autoconf-2.69.tar.gz | |
cd autoconf-2.69 | |
yum install -y openssl-devel | |
./configure | |
make && make install |
Jobs well done!
thanks!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
good tip!