summaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-08-21 22:20:20 +0100
committerBram Moolenaar <Bram@vim.org>2022-08-21 22:20:20 +0100
commit171c683237149262665135c7d5841a89bb156f53 (patch)
tree0eb40fda2d98493ec319b14468fc7c431146d4f4 /src/Makefile
parent448f72a78aad3a86a066f269d7e4569679355c46 (diff)
patch 9.0.0242: "make install" still failsv9.0.0242
Problem: "make install" still fails. (Wilhelm Payne) Solution: Also add the directory to installrtbase. (Dominique Pellé)
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index 177bc08df2..d01c18b838 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -2378,9 +2378,11 @@ INSTALLMANARGS = $(VIMLOC) $(SCRIPTLOC) $(VIMRCLOC) $(HELPSOURCE) $(MANMOD) \
# Install most of the runtime files
installruntime: installrtbase installmacros installpack installtutor installspell
-# install the help files; first adjust the contents for the final location
+# Install the help files; first adjust the contents for the final location.
+# Also install most of the other runtime files.
installrtbase: $(HELPSOURCE)/vim.1 $(DEST_VIM) $(DEST_RT) \
- $(DEST_HELP) $(DEST_PRINT) $(DEST_COL) $(DEST_SYN) $(DEST_IND) \
+ $(DEST_HELP) $(DEST_PRINT) $(DEST_COL) \
+ $(DEST_SYN) $(DEST_SYN)/shared $(DEST_IND) \
$(DEST_FTP) $(DEST_AUTO) $(DEST_AUTO)/dist $(DEST_AUTO)/xml \
$(DEST_IMPORT) $(DEST_IMPORT)/dist \
$(DEST_PLUG) $(DEST_TUTOR) $(DEST_SPELL) $(DEST_COMP)