Version in base suite: 7.7+24 Base version: xorg_7.7+24 Target version: xorg_7.7+24+deb13u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/x/xorg/xorg_7.7+24.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/x/xorg/xorg_7.7+24+deb13u1.dsc changelog | 10 ++++++++++ local/Xsession.d/20x11-common_process-args | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff -Nru xorg-7.7+24/debian/changelog xorg-7.7+24+deb13u1/debian/changelog --- xorg-7.7+24/debian/changelog 2025-01-24 09:02:23.000000000 +0000 +++ xorg-7.7+24+deb13u1/debian/changelog 2025-11-07 19:43:44.000000000 +0000 @@ -1,3 +1,13 @@ +xorg (1:7.7+24+deb13u1) trixie; urgency=medium + + * Team upload + + [ Jochen Sprickerhof ] + * 20x11-common_process-args: Only use the first word for command -v + (Closes: #1094494) + + -- Jeremy BĂ­cha Fri, 07 Nov 2025 14:43:44 -0500 + xorg (1:7.7+24) unstable; urgency=medium [ Debian Janitor ] diff -Nru xorg-7.7+24/debian/local/Xsession.d/20x11-common_process-args xorg-7.7+24+deb13u1/debian/local/Xsession.d/20x11-common_process-args --- xorg-7.7+24/debian/local/Xsession.d/20x11-common_process-args 2025-01-24 09:02:23.000000000 +0000 +++ xorg-7.7+24+deb13u1/debian/local/Xsession.d/20x11-common_process-args 2025-11-07 19:43:44.000000000 +0000 @@ -33,7 +33,7 @@ ;; *) # Specific program was requested. - if command -v "$1" >/dev/null; then + if command -v "${1%% *}" >/dev/null; then STARTUP="$1" else message "unable to launch \"$1\" X session ---" \