我正在尝试从共享主机更新Git。为此,我遵循以下步骤:
- 下载最新的Git版本
- 打开包装并将其放在服务器上
- 配置并创建Makefile->
./configure --prefix=$HOME/dev/git/src --without-tcltk
- 编译软件包->
make
然后make install
- 更新PATH .bash_profile
我停留在第4点。运行make
命令时,得到以下信息:
user@ssh1:~/dev/git/src$ make
SUBDIR gitweb
SUBDIR ../
make[2]: ? GIT-VERSION-FILE ? est ? jour.
GEN git-instaweb
SUBDIR perl
SUBDIR git_remote_helpers
SUBDIR templates
MSGFMT po/build/locale/is/LC_MESSAGES/git.mo
/bin/sh: msgfmt: command not found
make: *** [po/build/locale/is/LC_MESSAGES/git.mo] Erreur 127
编译器将引发msgfmt command not found
错误。
我用Google搜索它,它似乎与gettext包有关。
任何想法如何解决共享主机上的错误?