diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-09 21:14:06 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-09 22:28:04 +0100 |
commit | 5c3944c0f9dade077ab306102cf877c1cceaeb91 (patch) | |
tree | 4a71f0e42ddc626d2a12384d4ec05317f34d1f7c /bitbake/lib/bb/cooker.py | |
parent | 4a081b5a52e3d27da8d4b062f3fda292e8d8fb0a (diff) | |
download | poky-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/lib/bb/cooker.py')
-rw-r--r-- | bitbake/lib/bb/cooker.py | 2 |
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: |