* [meta-oe][PATCH] vim: workaround nawk dependency problem with RPM
@ 2013-09-03 19:04 Peter A. Bigot
2013-09-08 12:57 ` Peter A. Bigot
0 siblings, 1 reply; 3+ messages in thread
From: Peter A. Bigot @ 2013-09-03 19:04 UTC (permalink / raw)
To: openembedded-devel
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>
---
meta-oe/recipes-support/vim/vim.inc | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/meta-oe/recipes-support/vim/vim.inc b/meta-oe/recipes-support/vim/vim.inc
index d7336c2..991ba74 100644
--- a/meta-oe/recipes-support/vim/vim.inc
+++ b/meta-oe/recipes-support/vim/vim.inc
@@ -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
--
1.8.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [meta-oe][PATCH] vim: workaround nawk dependency problem with RPM
2013-09-03 19:04 [meta-oe][PATCH] vim: workaround nawk dependency problem with RPM Peter A. Bigot
@ 2013-09-08 12:57 ` Peter A. Bigot
2013-09-08 13:36 ` Martin Jansa
0 siblings, 1 reply; 3+ messages in thread
From: Peter A. Bigot @ 2013-09-08 12:57 UTC (permalink / raw)
To: openembedded-devel
Ping? I see this is marked as New, Archived in patchwork so it doesn't
show up for merge, but can't tell how it got archived. Is there
something wrong with it?
On 09/03/2013 02:04 PM, Peter A. Bigot wrote:
> 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>
> ---
> meta-oe/recipes-support/vim/vim.inc | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/meta-oe/recipes-support/vim/vim.inc b/meta-oe/recipes-support/vim/vim.inc
> index d7336c2..991ba74 100644
> --- a/meta-oe/recipes-support/vim/vim.inc
> +++ b/meta-oe/recipes-support/vim/vim.inc
> @@ -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
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [meta-oe][PATCH] vim: workaround nawk dependency problem with RPM
2013-09-08 12:57 ` Peter A. Bigot
@ 2013-09-08 13:36 ` Martin Jansa
0 siblings, 0 replies; 3+ messages in thread
From: Martin Jansa @ 2013-09-08 13:36 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 1680 bytes --]
On Sun, Sep 08, 2013 at 07:57:47AM -0500, Peter A. Bigot wrote:
> Ping? I see this is marked as New, Archived in patchwork so it doesn't
> show up for merge, but can't tell how it got archived. Is there
> something wrong with it?
It's in jansa/in-test bundle, see
http://www.openembedded.org/wiki/Patchwork#Multiple_layers_sharing_the_same_oe_project_on_patchwork
>
> On 09/03/2013 02:04 PM, Peter A. Bigot wrote:
> > 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>
> > ---
> > meta-oe/recipes-support/vim/vim.inc | 3 ++-
> > 1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/meta-oe/recipes-support/vim/vim.inc b/meta-oe/recipes-support/vim/vim.inc
> > index d7336c2..991ba74 100644
> > --- a/meta-oe/recipes-support/vim/vim.inc
> > +++ b/meta-oe/recipes-support/vim/vim.inc
> > @@ -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
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-09-08 13:35 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-03 19:04 [meta-oe][PATCH] vim: workaround nawk dependency problem with RPM Peter A. Bigot
2013-09-08 12:57 ` Peter A. Bigot
2013-09-08 13:36 ` Martin Jansa
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.