summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-03-17 08:34:37 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-03-17 11:36:05 +0100
commit274981f77d648ceb87f84cdeaec33a58dfd37385 (patch)
tree1b13c55de4d562d32efd5fedf82246d59f0dcc62 /wscript
parentMove mkimage.py to install_files so chmod is preserved and installed in bin/ (diff)
downloadrtems-tools-274981f77d648ceb87f84cdeaec33a58dfd37385.tar.bz2
Improve Python 3 compatibility
Diffstat (limited to 'wscript')
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index bd7c54d..1f5bbea 100644
--- a/wscript
+++ b/wscript
@@ -135,7 +135,7 @@ def check_options(ctx, host):
ctx.env.CXX = '%s-g++' % (host)
ctx.env.AR = '%s-ar' % (host)
ctx.env.PYTHON = 'python'
- elif host is not 'native':
+ elif host != 'native':
ctx.fatal('unknown host: %s' % (host));
#