* [meta-networking][PATCH] radvd: fix install issue for S!=B
@ 2014-06-04 23:11 Armin Kuster
2014-06-04 23:36 ` Otavio Salvador
0 siblings, 1 reply; 3+ messages in thread
From: Armin Kuster @ 2014-06-04 23:11 UTC (permalink / raw)
To: openembedded-devel
Some files are in "S" that are needed for install.
Signed-off-by: Armin Kuster <akuster@mvista.com>
---
meta-networking/recipes-daemons/radvd/radvd.inc | 1 +
1 file changed, 1 insertion(+)
diff --git a/meta-networking/recipes-daemons/radvd/radvd.inc b/meta-networking/recipes-daemons/radvd/radvd.inc
index 9e19401..b7353fc 100644
--- a/meta-networking/recipes-daemons/radvd/radvd.inc
+++ b/meta-networking/recipes-daemons/radvd/radvd.inc
@@ -33,6 +33,7 @@ do_install_append () {
install -m 0644 ${WORKDIR}/volatiles.03_radvd ${D}${sysconfdir}/default/volatiles/volatiles.03_radvd
# Documentation
+ cd ${S}
for i in radvd.conf.example README; do \
install -m 0644 $i ${D}${docdir}/radvd; \
done
--
1.9.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [meta-networking][PATCH] radvd: fix install issue for S!=B
2014-06-04 23:11 [meta-networking][PATCH] radvd: fix install issue for S!=B Armin Kuster
@ 2014-06-04 23:36 ` Otavio Salvador
2014-06-04 23:51 ` akuster@mvista
0 siblings, 1 reply; 3+ messages in thread
From: Otavio Salvador @ 2014-06-04 23:36 UTC (permalink / raw)
To: OpenEmbedded Devel List
On Wed, Jun 4, 2014 at 8:11 PM, Armin Kuster <akuster@mvista.com> wrote:
> Some files are in "S" that are needed for install.
>
> Signed-off-by: Armin Kuster <akuster@mvista.com>
> ---
> meta-networking/recipes-daemons/radvd/radvd.inc | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/meta-networking/recipes-daemons/radvd/radvd.inc b/meta-networking/recipes-daemons/radvd/radvd.inc
> index 9e19401..b7353fc 100644
> --- a/meta-networking/recipes-daemons/radvd/radvd.inc
> +++ b/meta-networking/recipes-daemons/radvd/radvd.inc
> @@ -33,6 +33,7 @@ do_install_append () {
>
> install -m 0644 ${WORKDIR}/volatiles.03_radvd ${D}${sysconfdir}/default/volatiles/volatiles.03_radvd
> # Documentation
> + cd ${S}
Don't 'cd'...
> for i in radvd.conf.example README; do \
> install -m 0644 $i ${D}${docdir}/radvd; \
> done
Please use:
install -m 0644 ${S}/$i ${D}${docdir}/radvd; \
--
Otavio Salvador O.S. Systems
http://www.ossystems.com.br http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [meta-networking][PATCH] radvd: fix install issue for S!=B
2014-06-04 23:36 ` Otavio Salvador
@ 2014-06-04 23:51 ` akuster@mvista
0 siblings, 0 replies; 3+ messages in thread
From: akuster@mvista @ 2014-06-04 23:51 UTC (permalink / raw)
To: openembedded-devel, otavio
On 06/04/2014 04:36 PM, Otavio Salvador wrote:
> On Wed, Jun 4, 2014 at 8:11 PM, Armin Kuster <akuster@mvista.com> wrote:
>> Some files are in "S" that are needed for install.
>>
>> Signed-off-by: Armin Kuster <akuster@mvista.com>
>> ---
>> meta-networking/recipes-daemons/radvd/radvd.inc | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/meta-networking/recipes-daemons/radvd/radvd.inc b/meta-networking/recipes-daemons/radvd/radvd.inc
>> index 9e19401..b7353fc 100644
>> --- a/meta-networking/recipes-daemons/radvd/radvd.inc
>> +++ b/meta-networking/recipes-daemons/radvd/radvd.inc
>> @@ -33,6 +33,7 @@ do_install_append () {
>>
>> install -m 0644 ${WORKDIR}/volatiles.03_radvd ${D}${sysconfdir}/default/volatiles/volatiles.03_radvd
>> # Documentation
>> + cd ${S}
> Don't 'cd'...
ok.
>
>> for i in radvd.conf.example README; do \
>> install -m 0644 $i ${D}${docdir}/radvd; \
>> done
> Please use:
>
> install -m 0644 ${S}/$i ${D}${docdir}/radvd; \
thanks.
I will sent out V2 shortly.
- Armin
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-06-04 23:51 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-04 23:11 [meta-networking][PATCH] radvd: fix install issue for S!=B Armin Kuster
2014-06-04 23:36 ` Otavio Salvador
2014-06-04 23:51 ` akuster@mvista
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.