summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/vim/vim.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-support/vim/vim.inc')
-rw-r--r--meta-oe/recipes-support/vim/vim.inc7
1 files changed, 4 insertions, 3 deletions
diff --git a/meta-oe/recipes-support/vim/vim.inc b/meta-oe/recipes-support/vim/vim.inc
index 359e2c592e..fbc0861997 100644
--- a/meta-oe/recipes-support/vim/vim.inc
+++ b/meta-oe/recipes-support/vim/vim.inc
@@ -15,7 +15,6 @@ SRC_URI = " \
15 ftp://ftp.${PN}.org/pub/${PN}/unix/${PN}-${PV_MAJOR}.tar.bz2;name=${VIMDIR} \ 15 ftp://ftp.${PN}.org/pub/${PN}/unix/${PN}-${PV_MAJOR}.tar.bz2;name=${VIMDIR} \
16 ftp://ftp.${PN}.org/pub/${PN}/extra/${PN}-${PV_MAJOR}-extra.tar.gz;name=${VIMDIR}-extra \ 16 ftp://ftp.${PN}.org/pub/${PN}/extra/${PN}-${PV_MAJOR}-extra.tar.gz;name=${VIMDIR}-extra \
17 ftp://ftp.${PN}.org/pub/${PN}/extra/${PN}-${PV_MAJOR}-lang.tar.gz;name=${VIMDIR}-lang \ 17 ftp://ftp.${PN}.org/pub/${PN}/extra/${PN}-${PV_MAJOR}-lang.tar.gz;name=${VIMDIR}-lang \
18 file://vimrc \
19" 18"
20 19
21S = "${WORKDIR}/${VIMDIR}/src" 20S = "${WORKDIR}/${VIMDIR}/src"
@@ -57,10 +56,12 @@ EXTRA_OECONF = " \
57 STRIP=/bin/true \ 56 STRIP=/bin/true \
58" 57"
59 58
60# Work around rpm picking up csh as a dep
61do_install_append() { 59do_install_append() {
60 # Work around rpm picking up csh as a dep
62 chmod -x ${D}${datadir}/${PN}/${VIMDIR}/tools/vim132 61 chmod -x ${D}${datadir}/${PN}/${VIMDIR}/tools/vim132
63 install -m 0644 ${WORKDIR}/vimrc ${D}/${datadir}/${PN} 62
63 # Install example vimrc from runtime files
64 install -m 0644 ../runtime/vimrc_example.vim ${D}/${datadir}/${PN}/vimrc
64} 65}
65 66
66PACKAGES =+ "${PN}-common ${PN}-syntax ${PN}-help ${PN}-tutor ${PN}-vimrc ${PN}-data" 67PACKAGES =+ "${PN}-common ${PN}-syntax ${PN}-help ${PN}-tutor ${PN}-vimrc ${PN}-data"