1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-23 17:37:06 +00:00
termux-packages/x11-packages/xfce4-session/disable-xinit-null-display.patch
marcusz 758b53748f
xfce4-session: fix issue that prevents startxfce4 from starting
This commit should fix issue when startxfce4 doesn't detect a DISPLAY
variable and exits non-zero code, fixes #734
2022-04-18 14:51:12 +05:30

22 lines
649 B
Diff

diff -uNr xfce4-session-4.16.0/scripts/startxfce4.in xfce4-session-4.16.0.mod/scripts/startxfce4.in
--- xfce4-session-4.16.0/scripts/startxfce4.in 2016-05-02 21:02:14.000000000 +0000
+++ xfce4-session-4.16.0.mod/scripts/startxfce4.in 2022-04-12 08:25:51.362449242 +0000
@@ -88,14 +88,9 @@
fi
export XDG_CONFIG_DIRS
-if test "x$DISPLAY" = "x"
-then
- echo "$0: Starting X server"
- prog=xinit
-
- if test ! "x$XDG_VTNR" = "x"; then
- SERVERRC="vt$XDG_VTNR $SERVERRC"
- fi
+if test "x$DISPLAY" = "x"; then
+ echo "$0: Failed to connect to display"
+ exit 2
else
echo "$0: X server already running on display $DISPLAY"
prog=/bin/sh