diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2014-08-24 02:00:08 +0200 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2014-09-01 22:41:56 +0200 |
commit | 478289140daae28cf7eabf54af3addf476aaad9c (patch) | |
tree | de13d92f26abaaf5eb0348ae35b2d1c23be497c7 /.travis-deps.sh | |
parent | Merge pull request #84 from bunnei/fix-hw-synchronization (diff) | |
download | yuzu-478289140daae28cf7eabf54af3addf476aaad9c.tar yuzu-478289140daae28cf7eabf54af3addf476aaad9c.tar.gz yuzu-478289140daae28cf7eabf54af3addf476aaad9c.tar.bz2 yuzu-478289140daae28cf7eabf54af3addf476aaad9c.tar.lz yuzu-478289140daae28cf7eabf54af3addf476aaad9c.tar.xz yuzu-478289140daae28cf7eabf54af3addf476aaad9c.tar.zst yuzu-478289140daae28cf7eabf54af3addf476aaad9c.zip |
Diffstat (limited to '.travis-deps.sh')
-rw-r--r-- | .travis-deps.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis-deps.sh b/.travis-deps.sh index 04450a4c8..84bddb304 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 |