Skip to content

Commit b2525c9

Browse files
committed
do not build git repo, but download latest release (travis build)
1 parent 2929d73 commit b2525c9

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

travis/build-libunwind.sh

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
#!/bin/bash
22
yum install -y libtool
33
cd
4-
git clone --depth 1 git://git.sv.gnu.org/libunwind.git
5-
cd libunwind/
6-
# what did you expect? this is centos 5 :), automake is a dinosaur
7-
sed -i -e "s/LT_INIT/AC_PROG_LIBTOOL/" configure.ac
8-
./autogen.sh
4+
wget http://download.savannah.gnu.org/releases/libunwind/libunwind-1.2.tar.gz
5+
tar xf libunwind-1.2.tar.gz
6+
cd libunwind-1.2/
7+
./configure
98
make install

0 commit comments

Comments
 (0)