There is an error during compilation vim from source.
In 'src' directory there are many makefiles. In all you might find
following line:
@echo 'char_u *compiled_sys = (char_u *)"$(USERDOMAIN)";' >> pathdef.c
I am running mingw in cygwin under Windows2k. UserDomain contains \r ^M
character.
Process of compiling cannot be successful.
How I was able to resolve this by changing it to:
@echo 'char_u *compiled_sys = (char_u *)"$(USERNAME)";' >> pathdef.c
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php