vim: workaround nawk dependency problem with RPM

One of the examples has a #!/usr/bin/nawk which tells RPM to add that as a
dep, which we don't want.

Signed-off-by: Peter A. Bigot <pab@pabigot.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
Peter Bigot 2013-09-03 19:04:49 +00:00 committed by Martin Jansa
parent 87e5240294
commit 53c9a1f55e

View File

@ -54,8 +54,9 @@ EXTRA_OECONF = " \
"
do_install_append() {
# Work around rpm picking up csh as a dep
# Work around rpm picking up csh or awk as a dep
chmod -x ${D}${datadir}/${PN}/${VIMDIR}/tools/vim132
chmod -x ${D}${datadir}/${PN}/${VIMDIR}/tools/mve.awk
# Install example vimrc from runtime files
install -m 0644 ../runtime/vimrc_example.vim ${D}/${datadir}/${PN}/vimrc