From: Nitin A Kamble Date: Thu, 3 May 2012 17:39:02 +0000 (-0700) Subject: telepathy-glib: fix build with automake 1.12.x X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~40805 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bd8e8550c8d7ab7daea8d63d6850c22639e7fb85;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git telepathy-glib: 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 avoid this issue: | rmdir: failed to remove `/srv/home/nitin/builds/build-gcc47/tmp/work/i586-poky-linux/telepathy-glib-0.18.1-r0/image/usr/bin': No such file or directory NOTE: package telepathy-glib-0.18.1-r0: task do_install: Failed no PR bump as no change in the output Signed-off-by: Nitin A Kamble Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-connectivity/telepathy/telepathy-glib_0.19.2.bb b/meta/recipes-connectivity/telepathy/telepathy-glib_0.19.2.bb index 22f8c07654a..deba3bb5b49 100644 --- a/meta/recipes-connectivity/telepathy/telepathy-glib_0.19.2.bb +++ b/meta/recipes-connectivity/telepathy/telepathy-glib_0.19.2.bb @@ -16,9 +16,3 @@ inherit autotools pkgconfig gettext FILES_${PN} += "${datadir}/telepathy \ ${datadir}/dbus-1" - -do_install_append() { - rmdir ${D}${bindir} - rmdir ${D}${libexecdir} - rmdir ${D}${servicedir} -}