Tony wrote:
> 1. hg --verbose clone https://bitbucket.org/vim-mirror/vim vim-hg > 2. cd vim-hg/src > 3. make distclean # IMPORTANT! otherwise "make shadow" will run > configure first) > 4. SHADOWDIR=shadow-huge make -e shadow > 5. cd shadow-huge > 6. ln -svf ../Makefile > 7. ln -sv ../../../hugecfg myconfig # preset "export" statements for > config arguments > 8. set -o verbose; source myconfig; set +o verbose > 9. make config > 10. make > > Step 10 fails (for any Normal or bigger build, but not for Tiny and > Small which have -multi_lang) because step 4 forgot to link > po/sjiscorr.c ("no rule to make sjuscorr.c needed by sjiscorr") -- > let's try to do it manually > > 11. pushd po > 12. ln -sv ../../po/sjiscorr.c > 13. popd > 14. make I'll add it to "make shadow". Please check after 8.1.1236. > Now the make succeeds, but I have another problem: runtime/vim.desktop > and runtime/gvim.desktop have just been modified below my clone, which > means that the next time I try to pull the changes, Mercurial will > refuse to do it, because I have "uncommitted changes". > > So what should I do in order not to have to clone everything from > scratch whenever there are changes? Add this line to .gitignore and/or .hgignore: src/po/*.desktop -- 5 out of 4 people have trouble with fractions. /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ an exciting new programming language -- http://www.Zimbu.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// -- -- 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 --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
