diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-05-28 21:32:30 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-05-28 21:32:30 +0100 |
commit | f2a9705633cc0ccf3c06b9ada67f57b7a3ea0614 (patch) | |
tree | 87ee9d6659fc0e630ddcb8effa803feaf4a6dd79 /meta/classes | |
parent | 05a296b2042b1087b11150274737171a4a209236 (diff) | |
download | poky-f2a9705633cc0ccf3c06b9ada67f57b7a3ea0614.tar.gz |
sanity.bbclass: Really fix TMPDIR change warning message
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/sanity.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 75bb1a99c1..5cf0677957 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass | |||
@@ -131,7 +131,8 @@ def check_sanity(e): | |||
131 | checkfile = os.path.join(tmpdir, "saved_tmpdir") | 131 | checkfile = os.path.join(tmpdir, "saved_tmpdir") |
132 | if os.path.exists(checkfile): | 132 | if os.path.exists(checkfile): |
133 | f = file(checkfile, "r") | 133 | f = file(checkfile, "r") |
134 | if (f.read().strip() != tmpdir): | 134 | saved_tmpdir = f.read().strip() |
135 | if (saved_tmpdir != tmpdir): | ||
135 | messages = messages + "Error, TMPDIR has changed location. You need to either move it back to %s or rebuild\n" % saved_tmpdir | 136 | messages = messages + "Error, TMPDIR has changed location. You need to either move it back to %s or rebuild\n" % saved_tmpdir |
136 | else: | 137 | else: |
137 | f = file(checkfile, "w") | 138 | f = file(checkfile, "w") |