Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 63 by
daddyez...@gmail.com: sed: RE error: illegal byte sequence
http://code.google.com/p/vim/issues/detail?id=63
What steps will reproduce the problem?
1. clone repo
2. ./configure
3. make
What version of the product are you using? On what operating system?
latest version 7.3.300+
Please provide any additional information below.
On osx I've some troubles compiling vim, this because this file:
runtime/tools/
efm_perl.pl
em_perl.pl contains an UTF-8 char but the file isn't encoded correctly (?)
So I got:
perlpath=`./which.sh perl` && sed
-e "s+/usr/bin/perl+$perlpath+" ../runtime/tools/
efm_perl.pl
>/usr/local/src/vim/HEAD/share/vim/vim73/tools/
efm_perl.pl
sed: RE error: illegal byte sequence
make[1]: *** [installtools] Error 1
My locale is correctly UTF8
LANG="en_US.UTF-8"
LC_COLLATE="en_US.UTF-8"
LC_CTYPE="en_US.UTF-8"
LC_MESSAGES="en_US.UTF-8"
LC_MONETARY="en_US.UTF-8"
LC_NUMERIC="en_US.UTF-8"
LC_TIME="en_US.UTF-8"
LC_ALL="en_US.UTF-8"
My fix at the moment is:
iconv -c -t UTF-8 ./runtime/tools/
efm_perl.pl > ./runtime/tools/
efm_perl.pl