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 a2c3b28 commit 47ec024Copy full SHA for 47ec024
setup.py
@@ -489,7 +489,8 @@ def run(self):
489
buildcfg.libraries.extend(extra_libraries)
490
491
# Override build configuration based on environment variables
492
- buildcfg.static_extension = is_envvar_on("IGRAPH_STATIC_EXTENSION")
+ if "IGRAPH_STATIC_EXTENSION" in os.environ:
493
+ buildcfg.static_extension = is_envvar_on("IGRAPH_STATIC_EXTENSION")
494
buildcfg.use_sanitizers = building_with_sanitizers()
495
496
# Replaces library names with full paths to static libraries
0 commit comments