On Tue, Jul 09, 2013 at 02:58:37PM +0200, Bram Moolenaar wrote: > > Patch 7.4a.006 > Problem: Failure in po file check goes unnoticed. > Solution: Fail "make test" if the po file check fails. > Files: src/Makefile
After this patch, "make test" with a shadowdir fails. Attached patch, fixes this. Cheers, -- James GPG Key: 4096R/331BA3DB 2011-12-05 James McCoy <[email protected]>
--- a/src/Makefile +++ b/src/Makefile @@ -2344,9 +2344,14 @@ shadow: runtime pixmaps mkdir $(SHADOWDIR) - cd $(SHADOWDIR); ln -s ../*.[ch] ../*.in ../*.sh ../*.xs ../*.xbm ../toolcheck ../proto ../po ../vimtutor ../gvimtutor ../mkinstalldirs . + cd $(SHADOWDIR); ln -s ../*.[ch] ../*.in ../*.sh ../*.xs ../*.xbm ../toolcheck ../proto ../vimtutor ../gvimtutor ../mkinstalldirs . mkdir $(SHADOWDIR)/auto cd $(SHADOWDIR)/auto; ln -s ../../auto/configure . + mkdir $(SHADOWDIR)/po + cd $(SHADOWDIR)/po; ln -s ../../po/*.po \ + ../../po/*.mak \ + ../../po/*.vim \ + ../../po/Makefile . cd $(SHADOWDIR); rm -f auto/link.sed cp Makefile configure $(SHADOWDIR) rm -f $(SHADOWDIR)/auto/config.mk $(SHADOWDIR)/config.mk.dist
signature.asc
Description: Digital signature
