Skip to content
Snippets Groups Projects
Commit 3c31c4ba authored by Donald Stufft's avatar Donald Stufft
Browse files

Use the normal lib directory

parent c8d2814d
No related branches found
No related tags found
No related merge requests found
......@@ -110,7 +110,6 @@ class build_clib(_build_clib):
configure, "--disable-shared", "--enable-static",
"--disable-debug", "--disable-dependency-tracking",
"--prefix", os.path.abspath(self.build_clib),
"--libdir", os.path.abspath(self.build_clib),
],
cwd=os.path.abspath(self.build_temp),
)
......@@ -129,6 +128,7 @@ class build_ext(_build_ext):
self.include_dirs.append(
os.path.join(build_clib.build_clib, "include")
)
self.library_dirs.append(os.path.join(build_clib.build_clib, "lib"))
return _build_ext.run(self)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment