From 4fc32e828113df50da154fcaf3eb3d56b9e72f09 Mon Sep 17 00:00:00 2001 From: Nitin A Kamble Date: Tue, 10 Jul 2012 08:51:23 -0700 Subject: gpgme: fix build with automake 1.12.x 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 Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- meta/recipes-support/gpgme/gpgme_1.3.2.bb | 6 +----- 1 file changed, 1 insertion(+), 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 b3c1d469e9..f19892c529 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 -} -- cgit 1.2.3-korg