http://bugs.openembedded.org/show_bug.cgi?id=1478





------- Comment #1 from [EMAIL PROTECTED]  2006-10-13 07:56 -------
Here's a patch that will cause a missing bbclass to at leasy cause a large
ERROR output on parsing (and will cause the recipe not to be cached).

Index: lib/bb/parse/parse_py/BBHandler.py
===================================================================
--- lib/bb/parse/parse_py/BBHandler.py  (revision 618)
+++ lib/bb/parse/parse_py/BBHandler.py  (working copy)
@@ -62,7 +62,7 @@
        if not file in __inherit_cache.split():
            debug(2, "BB %s:%d: inheriting %s" % (fn, lineno, file))
            __inherit_cache += " %s" % file
-            include(fn, file, d)
+            include(fn, file, d, True)
    data.setVar('__inherit_cache', __inherit_cache, d)


This may or may not affect include files but IMHO include files should also be
"required" in most cases. It doesn't make much sense to be allowing recipes to
be used when an include is not found.


-- 
Configure bugmail: http://bugs.openembedded.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
_______________________________________________
Bitbake-dev mailing list
[email protected]
https://lists.berlios.de/mailman/listinfo/bitbake-dev

Reply via email to