summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/cooker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 2c54209f89..6d448b4c6d 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -1052,7 +1052,7 @@ class BBCooker:
1052 parselog.error("invalid value for LAYERVERSION_%s: \"%s\"", c, layerver) 1052 parselog.error("invalid value for LAYERVERSION_%s: \"%s\"", c, layerver)
1053 errors = True 1053 errors = True
1054 continue 1054 continue
1055 if lver <> depver: 1055 if lver != depver:
1056 parselog.error("Layer '%s' depends on version %d of layer '%s', but version %d is enabled in your configuration", c, depver, dep, lver) 1056 parselog.error("Layer '%s' depends on version %d of layer '%s', but version %d is enabled in your configuration", c, depver, dep, lver)
1057 errors = True 1057 errors = True
1058 else: 1058 else: