我正在尝试从我的共享主机更新 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
错误。
我用谷歌搜索它,它似乎与 gettext 包有关。
知道如何在共享主机上修复该错误吗?