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@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
# 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: