답변:
마지막 버전의 autotools가 필요하지 않으면 리포지토리에서 설치하는 것이 좋습니다. 이 경우 수동으로 다운로드하여 수동으로 설치해야합니다. GNU autotools는 Autoconf, Automake 및 Libtool의 세 가지 패키지입니다. 수동으로 설치하는 단계는 다음과 같습니다.
cd /usr/local/src
Autoconf :
wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz
tar xf autoconf*
cd autoconf-2.69
sh configure --prefix /usr/local
make install
자동 완성 :
wget http://ftp.gnu.org/gnu/automake/automake-1.15.tar.gz
tar xf automake*
cd automake-1.15
sh configure --prefix /usr/local
make install
라이브러리 도구 :
wget http://mirror.jre655.com/GNU/libtool/libtool-2.4.6.tar.gz
tar xf libtool*
cd libtool-2.4.6
sh configure --prefix /usr/local
make install
가장 중요한 것은
autotools를 실행하기 위해 autotools를 설치할 필요가 없으며 autotools ./configure
의 주요 기능입니다. 반면에 configure 스크립트가 제공되지 않으면 autotools를 설치하여 생성해야합니다.
참고
make install
내부적으로 호출합니다 make
. 따라서이 경우에는을 호출 할 필요가 없습니다 make
. 일반적으로, Autotools가 당신이 전화를 기대 make
하지 않고 sudo는 특권과 make install
함께 sudo는 . 이 경우 단순성을 위해이 지침을 건너 뛰었습니다. autotools에서 생성 한 Makefile에 맬웨어가 없다고 믿는 것이 상당히 합리적입니까?
make install
인수없이 make all
부를 때 호출 되는 것make
sudo make install
-y
플래그 ftw 와 결합하십시오sudo apt-get install -y autotools-dev autoconf
. 이제 무인으로 실행할 수 있습니다