Skip to content
Commits on Source (2)
......@@ -7,6 +7,14 @@ xorg (1:7.7+20) UNRELEASED; urgency=medium
* Let xorg-dev depend on x11proto-dev rather than on the transional
x11-proto-*-dev packages (Closes: #906537).
[ Timo Aaltonen ]
* x11-common.dirs: Add etc/X11/xorg.conf.d for config snippets.
[ Iain Lane ]
* 20x11-common_process-args: Find the first word of our startup program for
$STARTUP. It's valid for this to be a full invocation, with arguments, but
for our purposes we only care what the executable was.
-- Julien Cristau <jcristau@debian.org> Sat, 13 Jan 2018 15:34:33 +0100
xorg (1:7.7+19) unstable; urgency=high
......
......@@ -45,7 +45,7 @@ case $# in
;;
*)
# Specific program was requested.
STARTUP_FULL_PATH=$(/usr/bin/which "$1" || true)
STARTUP_FULL_PATH=$(/usr/bin/which "${1%% *}" || true)
if [ -n "$STARTUP_FULL_PATH" ] && [ -e "$STARTUP_FULL_PATH" ]; then
if [ -x "$STARTUP_FULL_PATH" ]; then
STARTUP="$1"
......
etc/X11/xorg.conf.d
etc/X11/Xresources
etc/X11/Xreset.d
etc/X11/Xsession.d
......