diff options
author | Ting Liu <b28495@freescale.com> | 2014-07-01 08:48:56 -0500 |
---|---|---|
committer | Zhenhua Luo <zhenhua.luo@freescale.com> | 2014-07-08 18:14:47 +0800 |
commit | d7e14ab19acf050f4c010ceb65799b75dd523c11 (patch) | |
tree | 2cb04966d59a01b6fd9c1b0ab339cac05445847f /recipes-devtools | |
parent | 21a1969332a77bb65c2f4de1d9fcd3f16d7cebca (diff) | |
download | meta-fsl-ppc-d7e14ab19acf050f4c010ceb65799b75dd523c11.tar.gz |
qemu: Prevent QA warnings about /run
Signed-off-by: Ting Liu <b28495@freescale.com>
Diffstat (limited to 'recipes-devtools')
-rw-r--r-- | recipes-devtools/qemu/qemu_fslgit.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/recipes-devtools/qemu/qemu_fslgit.bb b/recipes-devtools/qemu/qemu_fslgit.bb index e76f350..30f27d6 100644 --- a/recipes-devtools/qemu/qemu_fslgit.bb +++ b/recipes-devtools/qemu/qemu_fslgit.bb | |||
@@ -35,6 +35,8 @@ do_install_prepend() { | |||
35 | 35 | ||
36 | do_install_append() { | 36 | do_install_append() { |
37 | rm ${WORKDIR}/powerpc_rom.bin | 37 | rm ${WORKDIR}/powerpc_rom.bin |
38 | # Prevent QA warnings about installed ${localstatedir}/run | ||
39 | if [ -d ${D}${localstatedir}/run ]; then rmdir ${D}${localstatedir}/run; fi | ||
38 | } | 40 | } |
39 | 41 | ||
40 | INSANE_SKIP_${PN} += "dev-deps" | 42 | INSANE_SKIP_${PN} += "dev-deps" |