do not use system boost libraries to compile YCM

This commit is contained in:
Cyryl Płotnicki-Chudyk 2016-08-12 13:06:39 +02:00
parent 85f583d687
commit 41c922138d

View file

@ -109,9 +109,9 @@ if [[ -z $NOVIM ]]; then
cd "$DIR/.vim/bundle/YouCompleteMe/" cd "$DIR/.vim/bundle/YouCompleteMe/"
git submodule update --init --recursive git submodule update --init --recursive
if [[ -z $NORUST ]]; then if [[ -z $NORUST ]]; then
./install.py --system-boost --clang-completer --omnisharp-completer ./install.py --clang-completer --omnisharp-completer
else else
./install.py --system-boost --racer-completer --clang-completer --omnisharp-completer ./install.py --racer-completer --clang-completer --omnisharp-completer
fi fi
fi fi