aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhil Blundell <philb@gnu.org>2010-02-09 11:33:09 +0000
committerPhil Blundell <philb@gnu.org>2010-02-09 11:34:08 +0000
commit17c810af40dfbf084ef87c9b2a92874af43a6fe7 (patch)
tree3bb17f5d82815a98b6affbb0e187e688ccb0dd05
parent8816d38c3b1ec26bc9967875767e3b67ac8596d8 (diff)
downloadopenembedded-17c810af40dfbf084ef87c9b2a92874af43a6fe7.tar.gz
sanity: correct misleading message about location of TMPDIR
There is no point in telling users to move TMPDIR "back" to its current location :-}
-rw-r--r--classes/sanity.bbclass5
1 files changed, 3 insertions, 2 deletions
diff --git a/classes/sanity.bbclass b/classes/sanity.bbclass
index f57d8e47d0..b66c9a9877 100644
--- a/classes/sanity.bbclass
+++ b/classes/sanity.bbclass
@@ -135,8 +135,9 @@ def check_sanity(e):
checkfile = os.path.join(tmpdir, "saved_tmpdir")
if os.path.exists(checkfile):
f = file(checkfile, "r")
- if (f.read().strip() != tmpdir):
- messages = messages + "Error, TMPDIR has changed location. You need to either move it back to %s or rebuild\n" % tmpdir
+ oldpath = f.read().strip()
+ if (oldpath != tmpdir):
+ messages = messages + "Error, TMPDIR has changed location. You need to either move it back to %s or rebuild\n" % oldpath
else:
import bb
bb.mkdirhier(tmpdir)