Browse Source

Allow the server platform to build on linux again.

Fixed a logic error in platform/server/detect.py that prevented building
the server platform on linux.
Ibrahn Sahir 7 years ago
parent
commit
9f172b634d
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