diff options
author | Qi.Chen@windriver.com <Qi.Chen@windriver.com> | 2015-11-19 11:37:39 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-12-18 12:44:42 +0100 |
commit | 445b13638e862500a7831547b8694f812111b529 (patch) | |
tree | 06476042bfcc4afc7be7ba0b527ace6e5ccb6355 /meta-oe/recipes-multimedia | |
parent | 17f59bcd444acf3a3ebf95fb9144a174c7273b0e (diff) | |
download | meta-openembedded-445b13638e862500a7831547b8694f812111b529.tar.gz |
libvpx: fix host-user-comtaminated QA issue
Fix 'host-user-comtaminated' QA issue by using chown in do_install.
Also remove the useless do_compile function.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-multimedia')
-rw-r--r-- | meta-oe/recipes-multimedia/webm/libvpx_1.4.0.bb | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/meta-oe/recipes-multimedia/webm/libvpx_1.4.0.bb b/meta-oe/recipes-multimedia/webm/libvpx_1.4.0.bb index 5d049bb8a..c963a9c6d 100644 --- a/meta-oe/recipes-multimedia/webm/libvpx_1.4.0.bb +++ b/meta-oe/recipes-multimedia/webm/libvpx_1.4.0.bb | |||
@@ -44,11 +44,8 @@ do_configure() { | |||
44 | ${S}/configure ${CONFIGUREOPTS} | 44 | ${S}/configure ${CONFIGUREOPTS} |
45 | } | 45 | } |
46 | 46 | ||
47 | do_compile() { | ||
48 | oe_runmake | ||
49 | } | ||
50 | |||
51 | do_install() { | 47 | do_install() { |
52 | oe_runmake install DESTDIR=${D} | 48 | oe_runmake install DESTDIR=${D} |
49 | chown -R root:root ${D} | ||
53 | } | 50 | } |
54 | 51 | ||