Browse Source

Merge pull request #23399 from ibrahn/reenable-x11-server-build

Allow the server platform to build on linux again.
Rémi Verschelde 6 năm trước cách đây
mục cha
commit
7f3093d3b9
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      platform/server/detect.py

+ 1 - 1
platform/server/detect.py

@@ -19,7 +19,7 @@ def get_program_suffix():
 
 def can_build():
 
-    if (os.name != "posix" or sys.platform != "darwin"):
+    if (os.name != "posix"):
         return False
 
     return True