summaryrefslogtreecommitdiff
path: root/platform/iphone
diff options
context:
space:
mode:
authorlupoDharkael <izhe@hotmail.es>2018-10-27 01:18:15 +0200
committerlupoDharkael <izhe@hotmail.es>2018-10-27 01:18:15 +0200
commitedcca5f7ad2ba92b3e04fb153f7db55c08593469 (patch)
tree8c29e3f3a2f793e3de3ae77f20c3a2607bf5e0e3 /platform/iphone
parent970b58148f579f741934f64af437d01b985df15d (diff)
Dont use equality operators with None singleton in python files
Diffstat (limited to 'platform/iphone')
-rw-r--r--platform/iphone/detect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/iphone/detect.py b/platform/iphone/detect.py
index b13a1e9643..417571f6f3 100644
--- a/platform/iphone/detect.py
+++ b/platform/iphone/detect.py
@@ -87,7 +87,7 @@ def configure(env):
s_compiler_path = '$IPHONEPATH/Developer/usr/bin/'
ccache_path = os.environ.get("CCACHE")
- if ccache_path == None:
+ if ccache_path is None:
env['CC'] = compiler_path + 'clang'
env['CXX'] = compiler_path + 'clang++'
env['S_compiler'] = s_compiler_path + 'gcc'