我正在运行操作系统 Ubuntu 14.04,我将通过 checkinstall 安装 git。这是根据 git docs 的步骤:
sudo apt-get install libcurl4-gnutls-dev libexpat1-dev gettext \
libz-dev libssl-dev
sudo apt-get install asciidoc xmlto docbook2x
tar -zxf git
cd git
make configure
./configure --prefix=/usr
make all doc info
sudo checkinstall install-doc install-html install-info
运行checkinstall
上面的make install
命令,这里是输出:
Installing with install-doc install-html install-info...
========================= Installation results ===========================
/var/tmp/tmp.5uGKarW0hS/installscript.sh: 4: /var/tmp/tmp.5uGKarW0hS/installscript.sh: install-doc: not found
**** Installation failed. Aborting package creation.
Cleaning up...OK
Bye.
请帮帮我,谢谢。