View | Details | Raw Unified | Return to bug 34614
Collapse All | Expand All

(-)a/patches/xdg-open-lxqt.patch (+17 lines)
Line 0 Link Here
1
diff --git a/xdg-utils/scripts/xdg-open.in b/xdg-utils/scripts/xdg-open.in
2
index 9817c5f..b570e98 100644
3
--- a/xdg-utils/scripts/xdg-open.in
4
+++ b/xdg-utils/scripts/xdg-open.in
5
@@ -435,7 +435,11 @@ open_lxde()
6
             file="$(pwd)/$file"
7
         fi
8
 
9
-        pcmanfm "$file"
10
+        if [ x"$DE" = x"lxqt" ]; then
11
+            pcmanfm-qt "$file"
12
+        else
13
+            pcmanfm "$file"
14
+        fi
15
     else
16
         open_generic "$1"
17
     fi
(-)a/xdg-utils.spec (-1 / +3 lines)
Lines 1-6 Link Here
1
Name: xdg-utils
1
Name: xdg-utils
2
Version: 1.1.2
2
Version: 1.1.2
3
Release: alt2
3
Release: alt3
4
4
5
Summary: A set of command line tools that assist applications with a variety of desktop integration tasks
5
Summary: A set of command line tools that assist applications with a variety of desktop integration tasks
6
6
Lines 19-24 Patch6: xdg-su-use-gnomesu-for-xfce-if-available.patch Link Here
19
Patch7: xdg-open-fix-ifs-use.patch
19
Patch7: xdg-open-fix-ifs-use.patch
20
Patch8: xdg-open-kde5.patch
20
Patch8: xdg-open-kde5.patch
21
Patch9: xdg-su-kde5.patch
21
Patch9: xdg-su-kde5.patch
22
Patch10: xdg-open-lxqt.patch
22
23
23
BuildArch: noarch
24
BuildArch: noarch
24
25
Lines 67-72 popd Link Here
67
#patch7 -p2
68
#patch7 -p2
68
#patch8 -p1
69
#patch8 -p1
69
%patch9 -p1
70
%patch9 -p1
71
%patch10 -p2
70
72
71
%build
73
%build
72
%autoreconf
74
%autoreconf

Return to bug 34614