From: Nitin A Kamble <[email protected]> automake 1.12.x automatically deletes empty directories, so the additional rmdir from the do_install_append fails.
cleanup the do_install_append for automake 1.12.x Avoids this build issue: | rmdir: failed to remove `/srv/home/nitin/builds2/build0/tmp/work/i586-poky-linux/gpgme-1.3.2-r0/image/usr/libexec': No such file or directory | ERROR: Function failed: do_install Signed-off-by: Nitin A Kamble <[email protected]> --- meta/recipes-support/gpgme/gpgme_1.3.2.bb | 6 +----- 1 files changed, 1 insertions(+), 5 deletions(-) diff --git a/meta/recipes-support/gpgme/gpgme_1.3.2.bb b/meta/recipes-support/gpgme/gpgme_1.3.2.bb index b3c1d46..f19892c5 100644 --- a/meta/recipes-support/gpgme/gpgme_1.3.2.bb +++ b/meta/recipes-support/gpgme/gpgme_1.3.2.bb @@ -17,7 +17,7 @@ DEPENDS = "libgpg-error libassuan ${PTH}" PTH_libc-uclibc = "npth" PTH = "pth" -PR = "r0" +PR = "r1" EXTRA_OECONF = "--with-pth=${STAGING_DIR_HOST} --without-pth-test \ --with-gpg=${bindir}/gpg --without-gpgsm" @@ -28,7 +28,3 @@ PACKAGES =+ "${PN}-pth ${PN}-pthread" FILES_${PN}-pth = "${libdir}/libgpgme-pth.so.*" FILES_${PN}-pthread = "${libdir}/libgpgme-pthread.so.*" FILES_${PN}-dev += "${datadir}/common-lisp/source/gpgme/*" - -do_install_append() { - rmdir ${D}/usr/libexec -} -- 1.7.3.4 _______________________________________________ Openembedded-core mailing list [email protected] http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
