# HG changeset patch # User Christian Brabandt # Date 1525292106 -7200 # Node ID 72506c835e03d3ec3954d47fbb7362d61f7b519d # Parent 3b4532a518863662728448a26bf22b268cbf33f3 patch 8.0.1788: tool to check a color scheme is not installed commit https://github.com/vim/vim/commit/dddab90d22d5f8be9c6751505339397ca5742831 Author: Bram Moolenaar Date: Wed May 2 22:00:17 2018 +0200 patch 8.0.1788: tool to check a color scheme is not installed Problem: Tool to check a color scheme is not installed. Solution: Update the install rule. (Christian Brabandt) diff --git a/src/Makefile b/src/Makefile --- a/src/Makefile +++ b/src/Makefile @@ -2473,8 +2473,9 @@ installrtbase: $(HELPSOURCE)/vim.1 $(DES cd $(PRINTSOURCE); $(INSTALL_DATA) *.ps $(DEST_PRINT) cd $(DEST_PRINT); chmod $(FILEMOD) *.ps # install the colorscheme files - cd $(COLSOURCE); $(INSTALL_DATA) *.vim README.txt $(DEST_COL) - cd $(DEST_COL); chmod $(HELPMOD) *.vim README.txt + cd $(COLSOURCE); $(INSTALL_DATA_R) *.vim tools README.txt $(DEST_COL) + cd $(DEST_COL); chmod $(DIRMOD) tools + cd $(DEST_COL); chmod $(HELPMOD) *.vim README.txt tools/*.vim # install the syntax files cd $(SYNSOURCE); $(INSTALL_DATA) *.vim README.txt $(DEST_SYN) cd $(DEST_SYN); chmod $(HELPMOD) *.vim README.txt diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1788, +/**/ 1787, /**/ 1786,