From f6b5924f97ef9b6a340f7e3c0bfc11cbca6f21b7 Mon Sep 17 00:00:00 2001 From: Rmys Date: Sun, 6 Dec 2020 20:55:04 +0300 Subject: [PATCH] xfce4 --- desktop/xfce/addon/xfce4-mount-plugin/actions.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/desktop/xfce/addon/xfce4-mount-plugin/actions.py b/desktop/xfce/addon/xfce4-mount-plugin/actions.py index 6dbbe10367..04b5a38b33 100644 --- a/desktop/xfce/addon/xfce4-mount-plugin/actions.py +++ b/desktop/xfce/addon/xfce4-mount-plugin/actions.py @@ -9,10 +9,14 @@ from pisi.actionsapi import pisitools from pisi.actionsapi import get def setup(): - autotools.configure() - - # for fix unused dependency - pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ") + # fix build failure w/ xfce4-panel-4.15.0 + pisitools.dosed("panel-plugin/devices.c", "", "") + pisitools.dosed("panel-plugin/mount-plugin.h", "", "") + autotools.configure() + + + # for fix unused dependency + pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ") def build(): autotools.make()