use /tmp as the vim build dir
This commit is contained in:
parent
20319f7bfd
commit
12da1074af
1 changed files with 3 additions and 1 deletions
|
@ -10,6 +10,8 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
DIR="$DIR/../"
|
DIR="$DIR/../"
|
||||||
|
|
||||||
# install vim from sources
|
# install vim from sources
|
||||||
|
VIM_BUILD_DIR=/tmp
|
||||||
|
cd "$VIM_BUILD_DIR"
|
||||||
git clone https://github.com/vim/vim.git
|
git clone https://github.com/vim/vim.git
|
||||||
cd vim
|
cd vim
|
||||||
./configure --with-features=huge \
|
./configure --with-features=huge \
|
||||||
|
@ -23,6 +25,6 @@ cd vim
|
||||||
make -j2
|
make -j2
|
||||||
sudo make install
|
sudo make install
|
||||||
cd
|
cd
|
||||||
rm -fr /tmp/vim
|
rm -fvr "$VIM_BUILD_DIR/vim"
|
||||||
|
|
||||||
DIR="$DIR" $DIR/common/configure_fresh_system
|
DIR="$DIR" $DIR/common/configure_fresh_system
|
||||||
|
|
Loading…
Reference in a new issue