From 17c810af40dfbf084ef87c9b2a92874af43a6fe7 Mon Sep 17 00:00:00 2001 From: Phil Blundell Date: Tue, 9 Feb 2010 11:33:09 +0000 Subject: [PATCH] sanity: correct misleading message about location of TMPDIR There is no point in telling users to move TMPDIR "back" to its current location :-} --- classes/sanity.bbclass | 5 +++-- 1 file 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) -- 2.39.5