If they are not owned by me, something has gone very wrong. Checking
only for the sanity of ~/.tmp and ~/tmp is not enough, so just skip the
check.
# Use ~/.tmp as directory for temporary files if available to reduce security
# problems on multi-user systems.
-if test -O "$HOME/.tmp" && test -d "$HOME/.tmp"; then
+if test -d "$HOME/.tmp"; then
TMP="$HOME/.tmp"
TEMP="$TMP"
TMPDIR="$TMP"
export TMP TEMP TMPDIR
# Also try ~/tmp as fallback.
-elif test -O "$HOME/tmp" && test -d "$HOME/tmp"; then
+elif test -d "$HOME/tmp"; then
TMP="$HOME/tmp"
TEMP="$TMP"
TMPDIR="$TMP"