fix windows build using python 3.7
fixes NameError (missing "subprocess_main" and "basestring")
This commit is contained in:
parent
90298ddf01
commit
8fd337e2df
2 changed files with 3 additions and 4 deletions
|
|
@ -6,12 +6,12 @@ import glob
|
|||
import string
|
||||
import datetime
|
||||
import subprocess
|
||||
from compat import iteritems
|
||||
from compat import iteritems, isbasestring
|
||||
|
||||
|
||||
def add_source_files(self, sources, filetype, lib_env=None, shared=False):
|
||||
|
||||
if isinstance(filetype, basestring):
|
||||
if isbasestring(filetype):
|
||||
dir_path = self.Dir('.').abspath
|
||||
filetype = glob.glob(dir_path + "/" + filetype)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue