Skip to content

Commit 763b684

Browse files
committed
patch 7.4.1775
Problem: The rgb.txt file is not installed. Solution: Install the file. (Christian Brabandt)
1 parent 902647d commit 763b684

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

src/Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1076,6 +1076,9 @@ SYS_DELMENU_FILE = $(DESTDIR)$(SCRIPTLOC)/delmenu.vim
10761076
### Name of the bugreport file target.
10771077
SYS_BUGR_FILE = $(DESTDIR)$(SCRIPTLOC)/bugreport.vim
10781078

1079+
### Name of the rgb.txt file target.
1080+
SYS_RGB_FILE = $(DESTDIR)$(SCRIPTLOC)/rgb.txt
1081+
10791082
### Name of the file type detection file target.
10801083
SYS_FILETYPE_FILE = $(DESTDIR)$(SCRIPTLOC)/filetype.vim
10811084

@@ -2167,6 +2170,9 @@ installrtbase: $(HELPSOURCE)/vim.1 $(DEST_VIM) $(DEST_RT) \
21672170
chmod $(VIMSCRIPTMOD) $(MSWIN_FILE)
21682171
$(INSTALL_DATA) $(SCRIPTSOURCE)/evim.vim $(EVIM_FILE)
21692172
chmod $(VIMSCRIPTMOD) $(EVIM_FILE)
2173+
# install the rgb.txt file
2174+
$(INSTALL_DATA) $(SCRIPTSOURCE)/rgb.txt $(SYS_RGB_FILE)
2175+
chmod $(VIMSCRIPTMOD) $(SYS_RGB_FILE)
21702176
# install the bugreport file
21712177
$(INSTALL_DATA) $(SCRIPTSOURCE)/bugreport.vim $(SYS_BUGR_FILE)
21722178
chmod $(VIMSCRIPTMOD) $(SYS_BUGR_FILE)

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -753,6 +753,8 @@ static char *(features[]) =
753753

754754
static int included_patches[] =
755755
{ /* Add new patch number below this line */
756+
/**/
757+
1775,
756758
/**/
757759
1774,
758760
/**/

0 commit comments

Comments
 (0)