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 85dcfd3 commit 4c89f77Copy full SHA for 4c89f77
src/semiwrap/makeplan.py
@@ -252,7 +252,7 @@ def _process_extension_module(
252
# Generate init.py for loading dependencies
253
#
254
255
- libinit_py = None
+ libinit_module = None
256
if libinit_modules:
257
libinit_py = extension.libinit or f"_init_{module_name}.py"
258
libinit_tgt = BuildTarget(
@@ -276,8 +276,8 @@ def _process_extension_module(
276
self.pyproject_input,
277
OutputFile(f"{varname}.pc"),
278
]
279
- if libinit_py:
280
- pc_args += ["--libinit-py", libinit_py]
+ if libinit_module:
+ pc_args += ["--libinit-py", libinit_module]
281
282
yield BuildTarget(
283
command="gen-pkgconf",
0 commit comments