From 8358485e1c4f14f4107e6d5a2d2da5f37a64d270 Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Thu, 4 Aug 2011 15:40:51 -0700 Subject: bb/cooker: mark parsed conf files as potential cache invalidators The include parameter to _parse() tells the parser whether to include the file in __base_depends, the contents of which have their mtime tested to invalidate the cache when they have changed. As I understand it we would want all of the configuration files that are currently handled with the _parse() method to invalidate the cache to set the default value of the include parameter to True. (Bitbake rev: 5cacdc4f1641eda1b5707c96f7c40924a9db6174) Signed-off-by: Joshua Lock Signed-off-by: Richard Purdie --- bitbake/lib/bb/cooker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake/lib/bb/cooker.py') diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index 33b684fbd8..4c13d32b47 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py @@ -1324,7 +1324,7 @@ def catch_parse_error(func): return wrapped @catch_parse_error -def _parse(fn, data, include=False): +def _parse(fn, data, include=True): return bb.parse.handle(fn, data, include) @catch_parse_error -- cgit v1.2.3-54-g00ecf