buildorder.py: remove libandroid-support from always_deps

as libiconv is no longer a symlink of it
This commit is contained in:
Tom Yan 2019-05-08 02:28:08 +08:00 committed by Leonid Pliushch
parent b707bd6315
commit 52198eee5d
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ class TermuxPackage(object):
raise Exception("build.sh not found for package '" + self.name + "'")
self.deps = parse_build_file_dependencies(build_sh_path)
always_deps = ['libandroid-support', 'libc++']
always_deps = ['libc++']
for dependency_name in always_deps:
if dependency_name not in self.deps and self.name not in always_deps:
self.deps.add(dependency_name)