From: Mark Wooding Date: Thu, 16 Mar 2006 20:03:25 +0000 (+0000) Subject: bash_profile: Fix stupid missing space. X-Git-Url: https://git.distorted.org.uk/~mdw/profile/commitdiff_plain/d196b86f3a9340168ec5d11d99dc6f97b8386c1c?ds=sidebyside bash_profile: Fix stupid missing space. Somewhere, the space in the TMPDIR test went missing. Nobody notices, because nobody sets TMPDIR, obviously. --- diff --git a/bash_profile b/bash_profile index 50d5542..ca3f2a4 100644 --- a/bash_profile +++ b/bash_profile @@ -141,7 +141,7 @@ export LESS="-iqgRh1" export LESSOPEN="|lesspipe.sh %s" export LESSCHARSET=latin1 # export MAKEFLAGS="-j4" -[ "$TMPDIR"] || eval `tmpdir -b` +[ "$TMPDIR" ] || eval `tmpdir -b` export TMP=$TMPDIR export PERL_READLINE_NOWARN=yes