123 文字
1 分
git1.6 install
環境によってはインストールオプションが必要みたい。
wget http://kernel.org/pub/software/scm/git/git-1.6.6.tar.bz2./configuremakeとすると、 こんなエラーが出て、makeが出て止まる。
BUILTIN git-repo-config BUILTIN git-show BUILTIN git-status BUILTIN git-whatchanged SUBDIR git-guiGITGUI_VERSION = 0.10.2 * new locations or Tcl/Tk interpreter GEN git-gui INDEX lib/ * tclsh failed; using unoptimized loading MSGFMT po/de.msg make[1]: *** [po/de.msg] Error 127make: *** [all] Error 2gettextもtclも入っている。 おそらくGUI関連のバイナリも作ろうとしているので、configureを以下のようにして回避。
./configure --without-tcltkmakesudo make install git1.6 install
https://blog.teraren.com/posts/git1-6-install/