diff options
Diffstat (limited to 'meta/recipes-support/vim/vim.inc')
-rw-r--r-- | meta/recipes-support/vim/vim.inc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/meta/recipes-support/vim/vim.inc b/meta/recipes-support/vim/vim.inc index 78e3f9528d..9f3dc08027 100644 --- a/meta/recipes-support/vim/vim.inc +++ b/meta/recipes-support/vim/vim.inc | |||
@@ -11,6 +11,7 @@ SRC_URI = "git://github.com/vim/vim.git \ | |||
11 | file://disable_acl_header_check.patch \ | 11 | file://disable_acl_header_check.patch \ |
12 | file://vim-add-knob-whether-elf.h-are-checked.patch \ | 12 | file://vim-add-knob-whether-elf.h-are-checked.patch \ |
13 | file://0001-src-Makefile-improve-reproducibility.patch \ | 13 | file://0001-src-Makefile-improve-reproducibility.patch \ |
14 | file://no-path-adjust.patch \ | ||
14 | " | 15 | " |
15 | SRCREV = "98056533b96b6b5d8849641de93185dd7bcadc44" | 16 | SRCREV = "98056533b96b6b5d8849641de93185dd7bcadc44" |
16 | 17 | ||
@@ -82,12 +83,6 @@ EXTRA_OECONF = " \ | |||
82 | do_install() { | 83 | do_install() { |
83 | autotools_do_install | 84 | autotools_do_install |
84 | 85 | ||
85 | # Work around file-rdeps picking up csh, awk, perl or python as a dep | ||
86 | chmod -x ${D}${datadir}/${BPN}/${VIMDIR}/tools/vim132 | ||
87 | chmod -x ${D}${datadir}/${BPN}/${VIMDIR}/tools/mve.awk | ||
88 | chmod -x ${D}${datadir}/${BPN}/${VIMDIR}/tools/*.pl | ||
89 | chmod -x ${D}${datadir}/${BPN}/${VIMDIR}/tools/*.py | ||
90 | |||
91 | # Install example vimrc from runtime files | 86 | # Install example vimrc from runtime files |
92 | install -m 0644 runtime/vimrc_example.vim ${D}/${datadir}/${BPN}/vimrc | 87 | install -m 0644 runtime/vimrc_example.vim ${D}/${datadir}/${BPN}/vimrc |
93 | 88 | ||
@@ -110,7 +105,12 @@ FILES_${PN}-help = "${datadir}/${BPN}/${VIMDIR}/doc" | |||
110 | FILES_${PN}-tutor = "${datadir}/${BPN}/${VIMDIR}/tutor ${bindir}/${BPN}tutor" | 105 | FILES_${PN}-tutor = "${datadir}/${BPN}/${VIMDIR}/tutor ${bindir}/${BPN}tutor" |
111 | FILES_${PN}-vimrc = "${datadir}/${BPN}/vimrc" | 106 | FILES_${PN}-vimrc = "${datadir}/${BPN}/vimrc" |
112 | FILES_${PN}-data = "${datadir}/${BPN}" | 107 | FILES_${PN}-data = "${datadir}/${BPN}" |
108 | |||
109 | # We do not want to complain if perl or gawk are not on the target. | ||
110 | # | ||
113 | FILES_${PN}-tools = "${datadir}/${BPN}/${VIMDIR}/tools" | 111 | FILES_${PN}-tools = "${datadir}/${BPN}/${VIMDIR}/tools" |
112 | INSANE_SKIP_${PN}-tools = "file-rdeps" | ||
113 | |||
114 | FILES_${PN}-common = " \ | 114 | FILES_${PN}-common = " \ |
115 | ${datadir}/${BPN}/${VIMDIR}/*.vim \ | 115 | ${datadir}/${BPN}/${VIMDIR}/*.vim \ |
116 | ${datadir}/${BPN}/${VIMDIR}/autoload \ | 116 | ${datadir}/${BPN}/${VIMDIR}/autoload \ |