summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-09 21:14:06 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-09 22:28:04 +0100
commit5c3944c0f9dade077ab306102cf877c1cceaeb91 (patch)
tree4a71f0e42ddc626d2a12384d4ec05317f34d1f7c /bitbake
parent4a081b5a52e3d27da8d4b062f3fda292e8d8fb0a (diff)
downloadpoky-5c3944c0f9dade077ab306102cf877c1cceaeb91.tar.gz
bitbake: cooker: Remove deprecated operator
The <> operator is deprecated, replace with !=. (Bitbake rev: 4a43e58dd97ec6ea304eaa727c030973a5bc91b7) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-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: