0

我正在运行操作系统 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.

请帮帮我,谢谢。

4

1 回答 1

1

运行这个命令sudo checkinstall make install install-doc install-html install-info,事情就解决了。

于 2015-07-02T02:23:08.747 回答