From 41c922138d289335cf53c5f912dff19e9939611c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki-Chudyk?= Date: Fri, 12 Aug 2016 13:06:39 +0200 Subject: [PATCH] do not use system boost libraries to compile YCM --- common/configure_fresh_system | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/configure_fresh_system b/common/configure_fresh_system index fadb79a2..7b5f90f0 100755 --- a/common/configure_fresh_system +++ b/common/configure_fresh_system @@ -109,9 +109,9 @@ if [[ -z $NOVIM ]]; then cd "$DIR/.vim/bundle/YouCompleteMe/" git submodule update --init --recursive if [[ -z $NORUST ]]; then - ./install.py --system-boost --clang-completer --omnisharp-completer + ./install.py --clang-completer --omnisharp-completer else - ./install.py --system-boost --racer-completer --clang-completer --omnisharp-completer + ./install.py --racer-completer --clang-completer --omnisharp-completer fi fi