Kaydet (Commit) 0b465702 authored tarafından Thomas Heller's avatar Thomas Heller

Try to repair the failing test on the OpenBSD buildbot. Trial and error...

üst a56b9155
...@@ -16,7 +16,7 @@ elif sys.platform == "cygwin": ...@@ -16,7 +16,7 @@ elif sys.platform == "cygwin":
else: else:
for line in os.popen("ldd %s" % sys.executable): for line in os.popen("ldd %s" % sys.executable):
if "libc.so" in line: if "libc.so" in line:
if sys.platform == "openbsd3": if sys.platform.startswith("openbsd3"):
libc_name = line.split()[4] libc_name = line.split()[4]
else: else:
libc_name = line.split()[2] libc_name = line.split()[2]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment