Comment 3 for bug 1983185

Revision history for this message
Andy Spiegl (spiegl+ubuntu) wrote :

The problem is a change in the file /etc/X11/Xsession.d/20x11-common_process-args

Replacing line 36:
        STARTUP_FULL_PATH=$(command -v "${1%% *}" || true)
with this:
        STARTUP_FULL_PATH=$(/usr/bin/which "${1%% *}" || true)
removes the error.

The question is now: WHY was there a change from "which" to "command -v"?

Andy