GNU Automake 설치
CentOS 7 기준 으로 쓰여진 포스트입니다.
M4
, autoconf
, automake
순서로 설치해야 오류를 피할 수 있다. 먼저, M4
, autoconf
, automake
압축 파일을 다운해 보자. 최신 버전은 이 링크들(m4 , autoconf , automake )에서 각각 확인 가능하다. (해당 내용은 이 블로그 를 참고로 작성되었다.)
1 2 3 4 5 6 # m4 wget http://ftp.gnu.org/gnu/m4/m4-1.4.18.tar.gz # autoconf wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz # automake wget http://ftp.gnu.org/gnu/automake/automake-1.16.1.tar.gz
압축은 이렇게 풀면 된다.
1 2 3 4 5 6 # m4 tar xvfz m4-1.4.18.tar.gz # autoconf tar xvfz autoconf-2.69.tar.gz # automake tar xvfz automake-1.16.1.tar.gz
m4 설치
1 2 3 cd m4-1.4.18 ./configure --prefix=/usr make && sudo make install
autoconf 설치
1 2 3 cd autoconf-2.69 ./configure --prefix=/usr make && sudo make install
automake 설치
1 2 3 cd automake-1.16.1 ./configure --prefix=/usr make && sudo make install