From d196b86f3a9340168ec5d11d99dc6f97b8386c1c Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Thu, 16 Mar 2006 20:03:25 +0000 Subject: [PATCH] bash_profile: Fix stupid missing space. Somewhere, the space in the TMPDIR test went missing. Nobody notices, because nobody sets TMPDIR, obviously. --- bash_profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.11.0