Browse Source

Merge pull request #3016 from weety/dev

Dev
Bernard Xiong 6 năm trước cách đây
mục cha
commit
779d86f1da
1 tập tin đã thay đổi với 4 bổ sung1 xóa
  1. 4 1
      tools/gcc.py

+ 4 - 1
tools/gcc.py

@@ -32,7 +32,10 @@ def GetGCCRoot(rtconfig):
     if prefix.endswith('-'):
         prefix = prefix[:-1]
 
-    root_path = os.path.join(exec_path, '..', prefix)
+    if exec_path == '/usr/bin':
+        root_path = os.path.join('/usr/lib', prefix)
+    else:
+        root_path = os.path.join(exec_path, '..', prefix)
 
     return root_path