* [meta-networking][PATCH] autofs: fix do_install failure and remove unused /var/run directory
@ 2013-10-24 4:47 Qi.Chen
2013-10-24 19:50 ` Joe MacDonald
0 siblings, 1 reply; 2+ messages in thread
From: Qi.Chen @ 2013-10-24 4:47 UTC (permalink / raw)
To: openembedded-devel
From: Chen Qi <Qi.Chen@windriver.com>
If ${D}/run doesn't exist, the following statement will have non-zero
exit code, which leads to do_install failure.
test -d ${D}/run && rmdir ${D}/run
Modify it to use the if statement to make the do_install task succeed
no matter ${D}/run exists or not.
Also, this patch removes the unused /var/run directory. Leaving that
directory there will result in /run directory created before splitting
package, which in turn lead to 'installed-vs-shipped' QA error or QA
warning.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
---
.../recipes-daemons/autofs/autofs_5.0.7.bb | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/meta-networking/recipes-daemons/autofs/autofs_5.0.7.bb b/meta-networking/recipes-daemons/autofs/autofs_5.0.7.bb
index f8df0ef..c4eea31 100644
--- a/meta-networking/recipes-daemons/autofs/autofs_5.0.7.bb
+++ b/meta-networking/recipes-daemons/autofs/autofs_5.0.7.bb
@@ -96,7 +96,12 @@ do_configure_prepend () {
}
do_install_append () {
- test -d ${D}/run && rmdir ${D}/run
+ if [ -d ${D}/run ]; then
+ rmdir ${D}/run
+ fi
+ if [ -d ${D}${localstatedir}/run ]; then
+ rmdir ${D}${localstatedir}/run
+ fi
}
INSANE_SKIP_${PN} = "dev-so"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [meta-networking][PATCH] autofs: fix do_install failure and remove unused /var/run directory
2013-10-24 4:47 [meta-networking][PATCH] autofs: fix do_install failure and remove unused /var/run directory Qi.Chen
@ 2013-10-24 19:50 ` Joe MacDonald
0 siblings, 0 replies; 2+ messages in thread
From: Joe MacDonald @ 2013-10-24 19:50 UTC (permalink / raw)
To: Qi.Chen; +Cc: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 1572 bytes --]
Merged, thanks.
-J.
[[oe][meta-networking][PATCH] autofs: fix do_install failure and remove unused /var/run directory] On 13.10.24 (Thu 12:47) Qi.Chen@windriver.com wrote:
> From: Chen Qi <Qi.Chen@windriver.com>
>
> If ${D}/run doesn't exist, the following statement will have non-zero
> exit code, which leads to do_install failure.
> test -d ${D}/run && rmdir ${D}/run
>
> Modify it to use the if statement to make the do_install task succeed
> no matter ${D}/run exists or not.
>
> Also, this patch removes the unused /var/run directory. Leaving that
> directory there will result in /run directory created before splitting
> package, which in turn lead to 'installed-vs-shipped' QA error or QA
> warning.
>
> Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
> ---
> .../recipes-daemons/autofs/autofs_5.0.7.bb | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/meta-networking/recipes-daemons/autofs/autofs_5.0.7.bb b/meta-networking/recipes-daemons/autofs/autofs_5.0.7.bb
> index f8df0ef..c4eea31 100644
> --- a/meta-networking/recipes-daemons/autofs/autofs_5.0.7.bb
> +++ b/meta-networking/recipes-daemons/autofs/autofs_5.0.7.bb
> @@ -96,7 +96,12 @@ do_configure_prepend () {
> }
>
> do_install_append () {
> - test -d ${D}/run && rmdir ${D}/run
> + if [ -d ${D}/run ]; then
> + rmdir ${D}/run
> + fi
> + if [ -d ${D}${localstatedir}/run ]; then
> + rmdir ${D}${localstatedir}/run
> + fi
> }
>
> INSANE_SKIP_${PN} = "dev-so"
--
-Joe MacDonald.
:wq
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-10-24 19:50 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-24 4:47 [meta-networking][PATCH] autofs: fix do_install failure and remove unused /var/run directory Qi.Chen
2013-10-24 19:50 ` Joe MacDonald
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox