Cleaned up/fixed skip_path with @nornagon's suggestion.

Co-Authored-By: Jeremy Apthorp <nornagon@nornagon.net>
This commit is contained in:
John Kleinschmidt 2018-09-19 18:36:07 -04:00
Родитель 3154275d2f
Коммит e367aff8ac
1 изменённых файлов: 6 добавлений и 9 удалений

Просмотреть файл

@ -21,15 +21,12 @@ PATHS_TO_SKIP = [
]
def skip_path(dep):
should_skip = False
for path in PATHS_TO_SKIP:
if dep.startswith(path):
print 'Skipping: '+dep
should_skip = True
for extension in EXTENSIONS_TO_SKIP:
if dep.endswith(extension):
print 'Skipping: '+dep
should_skip = True
should_skip = (
any(dep.startswith(path) for path in PATHS_TO_SKIP) or
any(dep.endswith(ext) for ext in EXTENSIONS_TO_SKIP))
if should_skip:
print("Skipping {}".format(dep))
return should_skip
def strip_binaries(target_cpu, dep):
for binary in LINUX_BINARIES_TO_STRIP: