Mercurial > vim
changeset 5999:03f95f5e311b v7.4.340
updated for version 7.4.340
Problem: Error from sed about illegal bytes when installing Vim.
Solution: Prepend LC_ALL=C. (Itchyny)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Wed, 25 Jun 2014 15:02:33 +0200 |
parents | 3e343a1168a5 |
children | 0cae257f69ff |
files | src/installman.sh src/version.c |
diffstat | 2 files changed, 8 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/installman.sh +++ b/src/installman.sh @@ -43,10 +43,13 @@ if test $what = "install" -o $what = "xx fi fi +# Note: setting LC_ALL to C is required to avoid illegal byte errors from sed +# on some systems. + if test $what = "install"; then # vim.1 echo installing $destdir/$exename.1 - sed -e s+/usr/local/lib/vim+$vimloc+ \ + LC_ALL=C sed -e s+/usr/local/lib/vim+$vimloc+ \ -e s+$vimloc/doc+$helpsubloc+ \ -e s+$vimloc/print+$printsubloc+ \ -e s+$vimloc/syntax+$synsubloc+ \ @@ -64,7 +67,7 @@ if test $what = "install"; then # vimtutor.1 echo installing $destdir/$exename""tutor.1 - sed -e s+/usr/local/lib/vim+$vimloc+ \ + LC_ALL=C sed -e s+/usr/local/lib/vim+$vimloc+ \ -e s+$vimloc/tutor+$tutorsubloc+ \ $helpsource/vimtutor$langadd.1 > $destdir/$exename""tutor.1 chmod $manmod $destdir/$exename""tutor.1 @@ -76,7 +79,7 @@ if test $what = "install"; then # evim.1 echo installing $destdir/$evimname.1 - sed -e s+/usr/local/lib/vim+$vimloc+ \ + LC_ALL=C sed -e s+/usr/local/lib/vim+$vimloc+ \ -e s+$vimloc/evim.vim+$scriptloc/evim.vim+ \ $helpsource/evim$langadd.1 > $destdir/$evimname.1 chmod $manmod $destdir/$evimname.1