升级svn 到1.7

来源:互联网 发布:单片机温度报警器设计 编辑:程序博客网 时间:2024/06/05 23:06
sudo yum update
sudo yum groupinstall "Development tools"
sudo yum groupinstall "Additional Development"
wget https://archive.apache.org/dist/subversion/subversion-1.7.8.tar.gz
tar zxvf subversion-1.7.8.tar.gz
cd subversion-1.7.8
./get-deps.sh
./configure
make
make check
sudo make install
On my system this seems to put the binary in /usr/local/bin/svnwhereas the 1.6 binary is in /usr/bin/svn so you might need set up an alias.
原创粉丝点击