diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2012-07-10 08:51:23 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-17 10:54:05 +0100 |
commit | c82ba682e4220199d7614849ae9ed75d11be5305 (patch) | |
tree | c01631ebf9ef24a87a37049f07d09a0bab9665fd /meta/recipes-support/gpgme | |
parent | d108b8a88479f8796fe724968e57502e5a67214e (diff) | |
download | poky-c82ba682e4220199d7614849ae9ed75d11be5305.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
(From OE-Core rev: 4fc32e828113df50da154fcaf3eb3d56b9e72f09)
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.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 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}" | |||
17 | PTH_libc-uclibc = "npth" | 17 | PTH_libc-uclibc = "npth" |
18 | PTH = "pth" | 18 | PTH = "pth" |
19 | 19 | ||
20 | PR = "r0" | 20 | PR = "r1" |
21 | 21 | ||
22 | EXTRA_OECONF = "--with-pth=${STAGING_DIR_HOST} --without-pth-test \ | 22 | EXTRA_OECONF = "--with-pth=${STAGING_DIR_HOST} --without-pth-test \ |
23 | --with-gpg=${bindir}/gpg --without-gpgsm" | 23 | --with-gpg=${bindir}/gpg --without-gpgsm" |
@@ -28,7 +28,3 @@ PACKAGES =+ "${PN}-pth ${PN}-pthread" | |||
28 | FILES_${PN}-pth = "${libdir}/libgpgme-pth.so.*" | 28 | FILES_${PN}-pth = "${libdir}/libgpgme-pth.so.*" |
29 | FILES_${PN}-pthread = "${libdir}/libgpgme-pthread.so.*" | 29 | FILES_${PN}-pthread = "${libdir}/libgpgme-pthread.so.*" |
30 | FILES_${PN}-dev += "${datadir}/common-lisp/source/gpgme/*" | 30 | FILES_${PN}-dev += "${datadir}/common-lisp/source/gpgme/*" |
31 | |||
32 | do_install_append() { | ||
33 | rmdir ${D}/usr/libexec | ||
34 | } | ||