| Submitter | Nitin A Kamble |
|---|---|
| Date | May 23, 2012, 12:05 a.m. |
| Message ID | <1de9f1dc9a111526ec113c9f5619c7cbe5e77256.1337731469.git.nitin.a.kamble@intel.com> |
| Download | mbox | patch |
| Permalink | /patch/28375/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/meta/recipes-connectivity/telepathy/telepathy-glib_0.18.1.bb b/meta/recipes-connectivity/telepathy/telepathy-glib_0.18.1.bb index 81da5f8..296b978 100644 --- a/meta/recipes-connectivity/telepathy/telepathy-glib_0.18.1.bb +++ b/meta/recipes-connectivity/telepathy/telepathy-glib_0.18.1.bb @@ -18,7 +18,13 @@ FILES_${PN} += "${datadir}/telepathy \ ${datadir}/dbus-1" do_install_append() { - rmdir ${D}${bindir} - rmdir ${D}${libexecdir} - rmdir ${D}${servicedir} + if [ -d ${D}${bindir} ] ; then + rmdir ${D}${bindir} + fi + if [ -d ${D}${libexecdir} ] ; then + rmdir ${D}${libexecdir} + fi + if [ -d ${D}${servicedir} ] ; then + rmdir ${D}${servicedir} + fi }