forked from Mirrors/freeswitch
31c7176755
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5711 d0543943-73ff-0310-b7d9-9358b9ac24b2
13 lines
229 B
Bash
Executable File
13 lines
229 B
Bash
Executable File
cd /tmp
|
|
mkdir fix_automake
|
|
cd fix_automake
|
|
wget http://mirrors.kernel.org/gnu/automake/automake-1.10.tar.gz
|
|
tar -zxvf automake-1.10.tar.gz
|
|
cd automake-1.10
|
|
./configure --prefix=/usr
|
|
make
|
|
make install
|
|
cd /tmp
|
|
rm -fr fix_automake
|
|
|