summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/main.py')
-rwxr-xr-xbitbake/lib/bb/main.py4
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: