summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorYoung Hahn <young@mapbox.com>2014-10-28 14:36:32 -0400
committerYoung Hahn <young@mapbox.com>2014-10-28 14:36:32 -0400
commitda47943e21516da15a903f3001dfafa9da8bac48 (patch)
tree248c494f3d63a5899bd18936b8552ab551d335ff /scripts
parent842f61e6d2e153e42747a7da751a2aa4e8a8aa5f (diff)
downloadqtlocation-mapboxgl-da47943e21516da15a903f3001dfafa9da8bac48.tar.gz
Try installing mesa from a tarball rather than git clone.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/travis_before_install.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/travis_before_install.sh b/scripts/travis_before_install.sh
index 7ec2f349ca..7c308d5800 100755
--- a/scripts/travis_before_install.sh
+++ b/scripts/travis_before_install.sh
@@ -31,9 +31,9 @@ if [[ ${TRAVIS_OS_NAME} == "linux" ]]; then
sudo apt-get build-dep -y libgl1-mesa-dri libxcb-glx0-dev
mapbox_time "build_mesa" \
- git clone git://anongit.freedesktop.org/git/mesa/mesa && \
- cd mesa && \
- git checkout mesa-10.3.1 && \
+ curl -sfo MesaLib-10.3.1.tar.gz http://ftp.de.debian.org/debian/pool/main/m/mesa/mesa_10.3.1.orig.tar.gz && \
+ tar -zxf MesaLib-10.3.1.tar.gz && \
+ cd Mesa-10.3.1 && \
./autogen.sh --with-gallium-drivers=svga,swrast --disable-dri \
--enable-xlib-glx --enable-glx-tls --with-llvm-prefix=/usr/lib/llvm-3.4 \
--without-va && \