From 12da1074afb64cd67e17bf836c17a22a1b30b2aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki-Chudyk?= Date: Wed, 18 May 2016 15:14:27 +0200 Subject: [PATCH] use /tmp as the vim build dir --- bunsen/configure_fresh_system | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bunsen/configure_fresh_system b/bunsen/configure_fresh_system index d4b73605..bc9cef84 100755 --- a/bunsen/configure_fresh_system +++ b/bunsen/configure_fresh_system @@ -10,6 +10,8 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" DIR="$DIR/../" # install vim from sources +VIM_BUILD_DIR=/tmp +cd "$VIM_BUILD_DIR" git clone https://github.com/vim/vim.git cd vim ./configure --with-features=huge \ @@ -23,6 +25,6 @@ cd vim make -j2 sudo make install cd -rm -fr /tmp/vim +rm -fvr "$VIM_BUILD_DIR/vim" DIR="$DIR" $DIR/common/configure_fresh_system