[bitbake-devel] [PATCH] lib/bb/main.py: Fix use of BBPOSTCONF and BBPRECONF

Benjamin Esquivel benjamin.esquivel at linux.intel.com
Wed Jun 8 16:57:06 UTC 2016


Looking good!

On Tue, 2016-06-07 at 12:27 +0000, mariano.lopez at linux.intel.com wrote:
> From: Mariano Lopez <mariano.lopez at linux.intel.com>
> 
> The functionality of BBPOSTCONF and BBPRECONF was added in
> commit 21b314d4d1e5b8fbeb4cc57006f0a110f0b3aa8f but there
> was a typo in the variable name that raises an exception
> in bitbake.
> 
> [YOCTO #9235]
> 
> Signed-off-by: Mariano Lopez <mariano.lopez at linux.intel.com>
> ---
>  bitbake/lib/bb/main.py | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/bitbake/lib/bb/main.py b/bitbake/lib/bb/main.py
> index b296ef8..283f29b 100755
> --- a/bitbake/lib/bb/main.py
> +++ b/bitbake/lib/bb/main.py
> @@ -281,10 +281,10 @@ class
> BitBakeConfigParameters(cookerdata.ConfigParameters):
>  
>          # use configuration files from environment variables
>          if "BBPRECONF" in os.environ:
> -            option.prefile.append(os.environ["BBPRECONF"])
> +            options.prefile.append(os.environ["BBPRECONF"])
>  
>          if "BBPOSTCONF" in os.environ:
> -            option.postfile.append(os.environ["BBPOSTCONF"])
> +            options.postfile.append(os.environ["BBPOSTCONF"])
>  
>          # fill in proper log name if not supplied
>          if options.writeeventlog is not None and
> len(options.writeeventlog) == 0:
> -- 
> 2.6.6
> 



More information about the bitbake-devel mailing list