summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libappstream-builder/asb-task.c5
1 files changed, 5 insertions, 0 deletions
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 ||