When buildsystem has 'doxygen' and 'php' the documentation will be created and the path in do_install (vpx-vp8-nopost-nodocs) won't be found anymore:
| make[2]: Leaving directory `.../libvpx-0.9.0-r2/libvpx-0.9.0' | + cp -r '.../libvpx-0.9.0/vpx-vp8-nopost-nodocs*0.9.0/*' .../image/usr/ | cp: cannot stat `.../libvpx-0.9.0/vpx-vp8-nopost-nodocs*0.9.0/*': No such file or directory | ERROR: Function do_install failed NOTE: package libvpx-0.9.0-r2: task do_install: Failed This patch makes the build more deterministic. Signed-off-by: Enrico Scholz <[email protected]> Cc: Koen Kooi <[email protected]> --- recipes/webm/libvpx_0.9.0.bb | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/recipes/webm/libvpx_0.9.0.bb b/recipes/webm/libvpx_0.9.0.bb index a59d94d..b55604b 100644 --- a/recipes/webm/libvpx_0.9.0.bb +++ b/recipes/webm/libvpx_0.9.0.bb @@ -1,7 +1,7 @@ DESCRIPTION = "vpx Multi-Format Codec SDK" LICENSE = "VP8" -PR = "r2" +PR = "r3" SRC_URI = "http://webm.googlecode.com/files/libvpx-${PV}.tar.bz2" @@ -20,6 +20,7 @@ VPXTARGET ?= "generic-gnu" CONFIGUREOPTS = " \ --target=${VPXTARGET} \ + --disable-install_docs \ --enable-vp8 \ --enable-libs \ " -- 1.7.0.1 _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
