Cosmetic: remove confusing init_buildenv comments (!1769)

Build dependencies don't necessarily get installed for the host arch,
that depends on the build method ("native" or not).
This commit is contained in:
Oliver Smith 2019-03-15 09:51:41 +01:00
parent a798539959
commit f23afed228
1 changed files with 2 additions and 2 deletions

View File

@ -197,10 +197,10 @@ def init_buildenv(args, apkbuild, arch, strict=False, force=False, cross=None,
if cross == "native":
depends_arch = args.arch_native
# Build dependencies (host arch)
# Build dependencies
depends, built = build_depends(args, apkbuild, depends_arch, strict)
# Check if build is necessary (target arch)
# Check if build is necessary
if not is_necessary_warn_depends(args, apkbuild, arch, force, built):
return False