Message ID | 20230310204519.706973-2-Martin.Jansa@gmail.com |
---|---|
State | New |
Headers | show |
Series | [2.2,1/4] utils: Allow to_boolean to support int values | expand |
diff --git a/lib/bb/cookerdata.py b/lib/bb/cookerdata.py index 8a354fed7..3555585c8 100644 --- a/lib/bb/cookerdata.py +++ b/lib/bb/cookerdata.py @@ -436,7 +436,7 @@ class CookerDataBuilder(object): msg += (" and bitbake did not find a conf/bblayers.conf file in" " the expected location.\nMaybe you accidentally" " invoked bitbake from the wrong directory?") - raise SystemExit(msg) + bb.fatal(msg) if not data.getVar("TOPDIR"): data.setVar("TOPDIR", os.path.abspath(os.getcwd()))