From 675b09dbfc06ba64e1bf63087cea9724229df75b Mon Sep 17 00:00:00 2001 From: "Jeremy Pallats/starcraft.man" Date: Wed, 9 Sep 2015 06:48:22 -0400 Subject: [PATCH] Fix #280: Travis Build - Vim Fails To Compile * Build broken by some gui_gtk link problem. --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 759dcb0..a200a03 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,12 +16,12 @@ before_script: | cd vim if [ $(ruby -e 'puts RUBY_VERSION') = 1.9.3 ]; then sudo apt-get install -y python2.7-dev - ./configure --with-features=huge --enable-pythoninterp + ./configure --disable-gui --with-features=huge --enable-pythoninterp elif [ $(ruby -e 'puts RUBY_VERSION') = 2.1.0 ]; then sudo apt-get install -y python3-dev - ./configure --with-features=huge --enable-python3interp + ./configure --disable-gui --with-features=huge --enable-python3interp else - ./configure --with-features=huge --enable-rubyinterp + ./configure --disable-gui --with-features=huge --enable-rubyinterp fi make sudo make install