From 185f6d0f54d6f42742c7e9bc2088b2f3d69e9d24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki-Chudyk?= Date: Sat, 9 Jul 2016 08:32:18 +0200 Subject: [PATCH 1/4] YCM update --- .vim/bundle/YouCompleteMe | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vim/bundle/YouCompleteMe b/.vim/bundle/YouCompleteMe index 94ec3ed9..c4a410b2 160000 --- a/.vim/bundle/YouCompleteMe +++ b/.vim/bundle/YouCompleteMe @@ -1 +1 @@ -Subproject commit 94ec3ed902e4e55b1766232d3b0e7d602bc2c472 +Subproject commit c4a410b2ca3a6222c7e196c10f258f6e672f31a9 From a1f99954bb35851ec6b05231fe249125f51e4dd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki-Chudyk?= Date: Sat, 9 Jul 2016 08:33:37 +0200 Subject: [PATCH 2/4] racer-vim update --- .vim/bundle/racer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vim/bundle/racer b/.vim/bundle/racer index 063094b9..f877a066 160000 --- a/.vim/bundle/racer +++ b/.vim/bundle/racer @@ -1 +1 @@ -Subproject commit 063094b977ce6c415f91e939626f334982c0a0a3 +Subproject commit f877a066cda349f8747a8d2de3ca7bcb4603dcfb From ac3fb7598c0ce7509efb69ed02e4700093a94e8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki-Chudyk?= Date: Sat, 9 Jul 2016 08:36:05 +0200 Subject: [PATCH 3/4] syntastic update --- .vim/bundle/vim-syntastic | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vim/bundle/vim-syntastic b/.vim/bundle/vim-syntastic index 64cce208..87f3e80b 160000 --- a/.vim/bundle/vim-syntastic +++ b/.vim/bundle/vim-syntastic @@ -1 +1 @@ -Subproject commit 64cce208388c10debd5b150de08d9be371bd0e86 +Subproject commit 87f3e80b443870ce821f82dd1b3dba5bd66b51b2 From d9eaceb27729045ef357e92c232b08d84ad3148f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki-Chudyk?= Date: Sat, 9 Jul 2016 09:28:30 +0200 Subject: [PATCH 4/4] do a recursive fetch for rust sources --- 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 c018ac1e..6cc8ed2c 100755 --- a/common/configure_fresh_system +++ b/common/configure_fresh_system @@ -1,7 +1,6 @@ #!/bin/bash set -e -set -v echo echo "configuring settings common among OSes" sudo true @@ -83,10 +82,11 @@ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib cd "$DIR/../" echo "getting rust sources..." if [[ ! -d rust ]]; then - git clone https://github.com/rust-lang/rust.git + git clone https://github.com/rust-lang/rust.git --recursive else cd rust git pull + git submodule update --init --recursive fi cargo install -f rustfmt