diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-08-21 22:12:59 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-08-21 22:12:59 +0000 |
commit | cee5560a4b3e40792f29b483e5d980403c99ffa6 (patch) | |
tree | e73e22890c2e1a032705f3f1c2ca47c2c19095aa /src/Makefile | |
parent | d12a1326031d82c0292718731c1ecbdf086cf00c (diff) | |
download | vim-cee5560a4b3e40792f29b483e5d980403c99ffa6.zip |
updated for version 7.0133
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/Makefile b/src/Makefile index 2a74f4ed7..72f036b29 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1840,15 +1840,12 @@ installtutor: $(DEST_VIM) $(DEST_RT) $(DEST_TUTOR) -$(INSTALL_DATA) $(TUTORSOURCE)/README* $(TUTORSOURCE)/tutor* $(DEST_TUTOR) chmod $(HELPMOD) $(DEST_TUTOR)/* -# Install the spell files, if they exist. +# Install the spell files, if they exist. This assumes at least the English +# spell file is there. installspell: $(DEST_VIM) $(DEST_RT) $(DEST_SPELL) if test -f $(SPELLSOURCE)/en.latin1.spl; then \ - $(INSTALL_DATA) $(SPELLSOURCE)/*.spl $(DEST_SPELL); \ - chmod $(HELPMOD) $(DEST_SPELL)/*.spl; \ - fi - if test -f $(SPELLSOURCE)/en.utf-8.spl; then \ - $(INSTALL_DATA) $(SPELLSOURCE)/*.spl $(DEST_SPELL); \ - chmod $(HELPMOD) $(DEST_SPELL)/*.spl; \ + $(INSTALL_DATA) $(SPELLSOURCE)/*.spl *.vim $(DEST_SPELL); \ + chmod $(HELPMOD) $(DEST_SPELL)/*.spl *.vim; \ fi # install helper program xxd |