From 5cde5255017084d9c3efc87f7f95999453809db3 Mon Sep 17 00:00:00 2001 From: Jason Paryani Date: Fri, 12 Dec 2014 12:33:12 -0800 Subject: [PATCH] Change setup_travis.sh to build current release --- buildutils/setup_travis.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/buildutils/setup_travis.sh b/buildutils/setup_travis.sh index 746acf4..5bc7484 100755 --- a/buildutils/setup_travis.sh +++ b/buildutils/setup_travis.sh @@ -9,6 +9,5 @@ sudo update-alternatives --quiet --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 sudo update-alternatives --quiet --set gcc /usr/bin/gcc-4.8 if ! [ -z "${BUILD_CAPNP}" ]; then - sudo apt-get install autoconf automake libtool autotools-dev - wget https://github.com/kentonv/capnproto/archive/master.zip && unzip master.zip && cd capnproto-master/c++ && ./setup-autotools.sh && autoreconf -i && ./configure && make -j6 check && sudo make install && sudo ldconfig && cd ../.. + wget https://capnproto.org/capnproto-c++-0.4.1.tar.gz && tar xzvf capnproto-c++-0.4.1.tar.gz && cd capnproto-c++-0.4.1 && ./configure && make -j6 check && sudo make install && sudo ldconfig && cd .. fi