Commit 44f3401a authored by Ralf Schmitt's avatar Ralf Schmitt

setup.py: use gmake to build libevent on bsd platforms

parent 28e6733a
......@@ -129,7 +129,10 @@ def compile_libevent(build):
if not exists("./config.status"):
mysystem("%s --with-pic --disable-shared --disable-dependency-tracking" % configure)
mysystem("make")
if "bsd" in sys.platform:
mysystem("gmake")
else:
mysystem("make")
for line in open("Makefile"):
if line.startswith("LIBS = "):
......
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