diff options
author | Matthieu Herrb <matthieu@herrb.eu> | 2022-07-01 12:08:52 +0200 |
---|---|---|
committer | Matthieu Herrb <matthieu@herrb.eu> | 2022-07-01 12:08:52 +0200 |
commit | d0ecfef28c08483e918c7f758a5f132071442ee0 (patch) | |
tree | 69dc0bace7958e85e55919ba136117ab1a09dde0 /startx.cpp | |
parent | 39c20b52adadd0df0abf6241b6282e1ad5ebdac6 (diff) | |
parent | 6bdce31401e3caf10242f1e8a4855b2c8e90ea13 (diff) |
Merge remote-tracking branch 'origin/master' into obsd
Diffstat (limited to 'startx.cpp')
-rw-r--r-- | startx.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -87,17 +87,17 @@ fi XCOMM First, start caching fonts if [ x`defaults read $X11_PREFS_DOMAIN cache_fonts` = x1 ] ; then if [ -x $bindir/font_cache ] ; then - $bindir/font_cache & + $bindir/font_cache elif [ -x $bindir/font_cache.sh ] ; then - $bindir/font_cache.sh & + $bindir/font_cache.sh elif [ -x $bindir/fc-cache ] ; then - $bindir/fc-cache & + $bindir/fc-cache fi fi if [ -x __libexecdir__/privileged_startx ] ; then - # Don't push this into the background because it can cause - # a race to create /tmp/.X11-unix + XCOMM Don't push this into the background because it can cause + XCOMM a race to create /tmp/.X11-unix __libexecdir__/privileged_startx fi @@ -271,7 +271,7 @@ if [ x"$enable_xauth" = x1 ] ; then XCOMM create a file with auth information for the server. ':0' is a dummy. xserverauthfile=`mktemp ${HOME}/.serverauth.XXXXXXXXXX` - trap "rm -f '$xserverauthfile'" HUP INT QUIT ILL TRAP KILL BUS TERM + trap "rm -f '$xserverauthfile'" HUP INT QUIT ILL TRAP BUS TERM xauth -q -f "$xserverauthfile" << EOF add :$dummy . $mcookie EOF |