diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-18 12:34:07 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-18 12:42:27 +0100 |
commit | 21b0a2a5ae059b58ca6ee248e3e4378f48490368 (patch) | |
tree | a98901e2d808e744abf97e9716d09b4e72cd20e7 /meta/classes/sanity.bbclass | |
parent | 0f2e55596fdd681cff05b6d28e9729fb4664d407 (diff) | |
download | poky-21b0a2a5ae059b58ca6ee248e3e4378f48490368.tar.gz |
sanity.bbclass: Disable the is DISTRO set check since we can now run distro-less
(From OE-Core rev: 1e76c3c4c4164e884b5c474fa279a1f2f7e846f5)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/sanity.bbclass')
-rw-r--r-- | meta/classes/sanity.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 6bcfa96487..fc005aa90d 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass | |||
@@ -154,8 +154,8 @@ def check_sanity(e): | |||
154 | 154 | ||
155 | # Check that the DISTRO is valid | 155 | # Check that the DISTRO is valid |
156 | # need to take into account DISTRO renaming DISTRO | 156 | # need to take into account DISTRO renaming DISTRO |
157 | if not ( check_conf_exists("conf/distro/${DISTRO}.conf", e.data) or check_conf_exists("conf/distro/include/${DISTRO}.inc", e.data) ): | 157 | #if not ( check_conf_exists("conf/distro/${DISTRO}.conf", e.data) or check_conf_exists("conf/distro/include/${DISTRO}.inc", e.data) ): |
158 | messages = messages + "DISTRO '%s' not found. Please set a valid DISTRO in your local.conf\n" % data.getVar("DISTRO", e.data, True ) | 158 | # messages = messages + "DISTRO '%s' not found. Please set a valid DISTRO in your local.conf\n" % data.getVar("DISTRO", e.data, True ) |
159 | 159 | ||
160 | missing = "" | 160 | missing = "" |
161 | 161 | ||