linux - Something wrong when I compile and install vim7.4 -
when compile , install vim 7.4,i have error. steps follows:
./configure --prefix=/home/user/.opt/vim74 --with-features=huge --enable-netbeans --enable-multibyte make make install
when excute command 'make',i got following error information.
make[1]: execvp: echo: permission denied
make[1]: [auto/pathdef.c] error 127 (ignored)
......
make[2]: leaving directory `/home/user/src/vim74/src/po'
make[2]: entering directory `/home/user/src/vim74/src/po'
make[2]: nothing done `converted'.
make[2]: leaving directory `/home/user/src/vim74/src/po'
make[1]: leaving directory `/home/user/src/vim74/src'
and command 'make install' gave me following errors.
......
installing /home/user/.opt/vim74/share/man/man1/vim.1
installing /home/user/.opt/vim74/share/man/man1/vimtutor.1
installing /home/user/.opt/vim74/share/man/man1/vimdiff.1
installing /home/user/.opt/vim74/share/man/man1/evim.1
make[1]: execvp: echo: permission denied
make[1]: * [installrtbase] error 127
make[1]: leaving directory `/home/user/src/vim74/src'
make: * [install] error 2
i have no root permission , not sudoer how can solve problem?
is ubuntu? if is, install
sudo apt-get install xorg-dev
./configure \ --enable-perlinterp=dynamic \ --enable-pythoninterp=dynamic \ --enable-rubyinterp=dynamic \ --enable-cscope \ --enable-gui=auto \ --enable-gtk2-check \ --enable-gnome-check \ --with-features=huge \ --with-x \ --with-python-config-dir=/usr/lib/python2.6/config
then
make && sudo make install
that should enable x11 , clipboard support, verified under ubuntu10.04.
Comments
Post a Comment