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 years ago
parent
commit
7f3093d3b9
1 changed files with 1 additions and 1 deletions
  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