Dear Maintainer, the man page of sqlite3 says however, it does not look in XDG_CONFIG_HOME at all. You can verify with ``` strace -f -t -e trace=file sqlite3 ``` Cheers, Bastian
[Bastian Venthur] Sure enough. % echo | XDG_CONFIG_HOME=/tmp strace -f -t -e trace=file sqlite3 2>&1 |grep /tmp %
since ``` echo | XDG_CONFIG_HOME=/tmp strace -f -t -e trace=file sqlite3 2>&1 |grep /tmp ``` reveals that sqlite3 looks into `XDG_CONFIG_HOME` if the environment variable is set but does not if it is not set, I assume it only partially implements the standard. Because according to: https://specifications.freedesktop.org/basedir-spec/latest/#variables which is what all other applications I've encountered so far do. Cheers, Bastian
FYI: Seems like upstream has a fix applied for this issue: https://www.sqlite.org/src/info/33841c9c3cb57bee which seems not available in Debian's sources.