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 9bc6076 commit 8f93b01Copy full SHA for 8f93b01
setup.py
@@ -33,7 +33,8 @@ class libuv_build_ext(build_ext):
33
34
def initialize_options(self):
35
build_ext.initialize_options(self)
36
- self.use_system_libuv = 0
+ if getattr(self, 'use_system_libuv', None) is None:
37
+ self.use_system_libuv = 0
38
39
def build_libuv(self):
40
env = os.environ.copy()
0 commit comments