Reduce some diagnostic spam.

This commit is contained in:
Shyotl
2014-12-23 20:00:01 -06:00
parent 0ac3fd0563
commit ecd58e3924
2 changed files with 4 additions and 3 deletions

View File

@@ -642,7 +642,6 @@ class LLManifest(object):
os.path.normpath(os.path.join(self.get_alt_build_prefix(), src))]
)
for path in paths:
print path
if self.wildcard_pattern.search(path):
is_glob = True
for s,d in self.expand_globs(path, dst):

View File

@@ -197,12 +197,14 @@ class ViewerManifest(LLManifest):
def add_extra_libraries(self):
found_libs = []
if 'extra_libraries' in self.args:
if 'extra_libraries' in self.args and self.args['extra_libraries'] != '':
try:
path_list = self.args['extra_libraries'].strip('"').split('|')
except:
return None
for cur_path in path_list:
if cur_path is None or cur_path == '':
continue
try:
config, file = cur_path.split(' ', 1)
except:
@@ -215,7 +217,7 @@ class ViewerManifest(LLManifest):
if(self.args['configuration'].lower() != 'debug'):
continue
cur_path = file
if(cur_path != None):
if(cur_path != ''):
found_libs += self.path_optional(cur_path)
return found_libs