diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-01-26 17:36:51 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-01-26 17:36:51 +0100 |
commit | 8e59a1e127de38ef311f5064b41d201228703883 (patch) | |
tree | ebb3f49c6b036b02edb756813f1a1c90e04d0c90 | |
parent | 29ddebef4038d2d2b3bc9d8d3b0109f4046d6fbf (diff) | |
download | vim-git-8e59a1e127de38ef311f5064b41d201228703883.tar.gz |
patch 8.1.0827: missing dependency in Makefilev8.1.0827
Problem: Missing dependency in Makefile.
Solution: Add dependency from autocmd.o on auto/osdef.h
-rw-r--r-- | src/Makefile | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 2c409f0a6..3f5418456 100644 --- a/src/Makefile +++ b/src/Makefile @@ -3383,7 +3383,7 @@ objects/arabic.o: arabic.c vim.h protodef.h auto/config.h feature.h os_unix.h \ proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ proto.h globals.h farsi.h arabic.h objects/autocmd.o: autocmd.c vim.h protodef.h auto/config.h feature.h \ - os_unix.h os_mac.h ascii.h keymap.h term.h macros.h option.h beval.h \ + auto/osdef.h os_unix.h os_mac.h ascii.h keymap.h term.h macros.h option.h beval.h \ structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ farsi.h arabic.h objects/beval.o: beval.c vim.h protodef.h auto/config.h feature.h os_unix.h \ diff --git a/src/version.c b/src/version.c index 55105221e..39a4f8f84 100644 --- a/src/version.c +++ b/src/version.c @@ -784,6 +784,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 827, +/**/ 826, /**/ 825, |