From 0a474d3c4445e1943dfe3a1dbf0f0f1140c8c434 Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Wed, 27 Apr 2016 11:48:15 +0100 Subject: trivial: Add a work-around for the new libreoffice in the builder --- libappstream-builder/asb-task.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libappstream-builder/asb-task.c b/libappstream-builder/asb-task.c index 8a8b2cc..56dbdef 100644 --- a/libappstream-builder/asb-task.c +++ b/libappstream-builder/asb-task.c @@ -183,6 +183,11 @@ asb_task_explode_extra_packages (AsbTask *task, GError **error) continue; if (g_strcmp0 (tmp, asb_package_get_name (priv->pkg)) == 0) continue; + + /* libreoffice making things complicated */ + if (g_strcmp0 (tmp, "libreoffice-core") == 0) + g_ptr_array_add (array, g_strdup ("libreoffice-data")); + /* if an app depends on kde-runtime, that means the * oxygen icon set is available to them */ if (g_strcmp0 (tmp, "oxygen-icon-theme") == 0 || -- cgit v1.2.1