summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/gpgme
diff options
context:
space:
mode:
authorNitin A Kamble <nitin.a.kamble@intel.com>2012-07-10 08:51:23 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-07-17 10:47:40 +0100
commit4fc32e828113df50da154fcaf3eb3d56b9e72f09 (patch)
tree0b067d181c4f97aea86ba299b9bb0b8e7179bdeb /meta/recipes-support/gpgme
parentf3ea68cdd2559d84d5b2cd95323d186fff14c7b7 (diff)
downloadopenembedded-core-4fc32e828113df50da154fcaf3eb3d56b9e72f09.tar.gz
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 <nitin.a.kamble@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/gpgme')
-rw-r--r--meta/recipes-support/gpgme/gpgme_1.3.2.bb6
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 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
-}