예제 #1
0
 def spawn(self, cmd, search_path=1, level=1):
     cmd = [c.format(libdir=LIB_SECP256K1_DIR) for c in cmd]
     distutils_build_ext.spawn(self, cmd, search_path, level)
예제 #2
0
 def spawn(self, cmd):
     cmd[1:-1] = [
         arg if arg.startswith('-') else unvpath(arg) for arg in cmd[1:-1]
     ]
     _build_ext.spawn(self, cmd)
예제 #3
0
파일: setup.py 프로젝트: ant9000/libsigrok
 def spawn (self, cmd):
     cmd[1:-1] = [arg if arg.startswith('-') else unvpath(arg) for arg in
                  cmd[1:-1]]
     _build_ext.spawn(self, cmd)
예제 #4
0
 def spawn(self, cmd, search_path=1, level=1):
     cmd = [c.format(libdir=LIB_SECP256K1_DIR) for c in cmd]
     distutils_build_ext.spawn(self, cmd, search_path, level)