summaryrefslogtreecommitdiffstats
path: root/source-builder/sb/config.py
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2013-02-26 17:55:58 +1100
committerChris Johns <chrisj@rtems.org>2013-02-26 17:55:58 +1100
commit99eee0e776f1f3dc047e0739be5f40f6c5c9c84e (patch)
tree56ff3f540a4059e34bb1006f0382683befca4992 /source-builder/sb/config.py
parentUpdated doco. (diff)
downloadrtems-source-builder-99eee0e776f1f3dc047e0739be5f40f6c5c9c84e.tar.bz2
Fix the != operator.
Diffstat (limited to 'source-builder/sb/config.py')
-rw-r--r--source-builder/sb/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source-builder/sb/config.py b/source-builder/sb/config.py
index d25d02b..fda66ed 100644
--- a/source-builder/sb/config.py
+++ b/source-builder/sb/config.py
@@ -466,7 +466,7 @@ class file:
#
if ifls[0] == '==':
istrue = True
- elif ifls[0] == '==':
+ elif ifls[0] == '!=':
istrue = False
else:
istrue = check_bool(ifls[0])