aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis-deps.sh
diff options
context:
space:
mode:
Diffstat (limited to '.travis-deps.sh')
-rw-r--r--.travis-deps.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis-deps.sh b/.travis-deps.sh
index 04450a4c..84bddb30 100644
--- a/.travis-deps.sh
+++ b/.travis-deps.sh
@@ -6,7 +6,7 @@ set -e
if [ "$TRAVIS_OS_NAME" = linux -o -z "$TRAVIS_OS_NAME" ]; then
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
sudo apt-get -qq update
- sudo apt-get -qq install g++-4.8 xorg-dev libglu1-mesa-dev libglew-dev libxcursor-dev
+ sudo apt-get -qq install g++-4.8 xorg-dev libglu1-mesa-dev libxcursor-dev
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
git clone https://github.com/glfw/glfw.git
mkdir glfw/build && cd glfw/build
@@ -14,5 +14,5 @@ if [ "$TRAVIS_OS_NAME" = linux -o -z "$TRAVIS_OS_NAME" ]; then
cd -
elif [ "$TRAVIS_OS_NAME" = osx ]; then
brew tap homebrew/versions
- brew install glew qt5 glfw3 pkgconfig
+ brew install qt5 glfw3 pkgconfig
fi