diff options
-rwxr-xr-x | bitbake/lib/bb/main.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/main.py b/bitbake/lib/bb/main.py index b296ef8b8c..283f29bb15 100755 --- a/bitbake/lib/bb/main.py +++ b/bitbake/lib/bb/main.py | |||
@@ -281,10 +281,10 @@ class BitBakeConfigParameters(cookerdata.ConfigParameters): | |||
281 | 281 | ||
282 | # use configuration files from environment variables | 282 | # use configuration files from environment variables |
283 | if "BBPRECONF" in os.environ: | 283 | if "BBPRECONF" in os.environ: |
284 | option.prefile.append(os.environ["BBPRECONF"]) | 284 | options.prefile.append(os.environ["BBPRECONF"]) |
285 | 285 | ||
286 | if "BBPOSTCONF" in os.environ: | 286 | if "BBPOSTCONF" in os.environ: |
287 | option.postfile.append(os.environ["BBPOSTCONF"]) | 287 | options.postfile.append(os.environ["BBPOSTCONF"]) |
288 | 288 | ||
289 | # fill in proper log name if not supplied | 289 | # fill in proper log name if not supplied |
290 | if options.writeeventlog is not None and len(options.writeeventlog) == 0: | 290 | if options.writeeventlog is not None and len(options.writeeventlog) == 0: |