Browse Source

[tools] Fix SCons build error when `RTT_EXEC_PATH` not found.

armink 7 năm trước cách đây
mục cha
commit
dc7522b7ca
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      tools/building.py

+ 1 - 1
tools/building.py

@@ -249,7 +249,7 @@ def PrepareBuilding(env, root_directory, has_libcpu=False, remove_components = [
 
     # auto change the 'RTT_EXEC_PATH' when 'rtconfig.EXEC_PATH' get failed
     if not os.path.exists(rtconfig.EXEC_PATH):
-        if os.environ['RTT_EXEC_PATH']:
+        if 'RTT_EXEC_PATH' in os.environ:
             # del the 'RTT_EXEC_PATH' and using the 'EXEC_PATH' setting on rtconfig.py
             del os.environ['RTT_EXEC_PATH']
             reload(rtconfig)