We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2229bfe commit 7901fbfCopy full SHA for 7901fbf
setup.py
@@ -4,8 +4,9 @@
4
5
from build_support.build_ext import build_ext
6
7
+
8
src_root = Path(__file__).parent / 'src'
-sources = [str(path.absolute()) for path in src_root.rglob('*.c')]
9
+sources = [str(path.relative_to(Path(__file__).parent)) for path in src_root.rglob('*.c')]
10
pyxmlsec = Extension('xmlsec', sources=sources)
11
12
0 commit comments