Преглед изворни кода

Merge branch 'master' into input-overhaul

rdb пре 7 година
родитељ
комит
1fed113df5
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      makepanda/makewheel.py

+ 1 - 1
makepanda/makewheel.py

@@ -28,7 +28,7 @@ default_platform = get_platform()
 
 if default_platform.startswith("linux-"):
     # Is this manylinux1?
-    if os.path.isfile("/lib/libc-2.5.so") and os.path.isdir("/opt/python"):
+    if (os.path.isfile("/lib/libc-2.5.so") or os.path.isfile("/lib64/libc-2.5.so")) and os.path.isdir("/opt/python"):
         default_platform = default_platform.replace("linux", "manylinux1")