summaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-05-02 22:00:17 +0200
committerBram Moolenaar <Bram@vim.org>2018-05-02 22:00:17 +0200
commitdddab90d22d5f8be9c6751505339397ca5742831 (patch)
tree8dbf0beeac15520a70732b44965cb28f8d60003d /src/Makefile
parente2c8d8392684a940cc5608acc73ff47486bd7b92 (diff)
patch 8.0.1788: tool to check a color scheme is not installedv8.0.1788
Problem: Tool to check a color scheme is not installed. Solution: Update the install rule. (Christian Brabandt)
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index 85de383317..d7b8f7ee29 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -2473,8 +2473,9 @@ installrtbase: $(HELPSOURCE)/vim.1 $(DEST_VIM) $(DEST_RT) \
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