Browse Source

build-package.sh: allow static packages to be in dependencies

emacs-27
Leonid Plyushch 5 years ago
parent
commit
ce13d0099a
No known key found for this signature in database GPG Key ID: 45F2964132545795
  1. 3
      scripts/buildorder.py

3
scripts/buildorder.py

@ -81,6 +81,9 @@ class TermuxPackage(object):
self.deps.add(subpkg.name)
self.deps |= subpkg.deps
subpkg = TermuxSubPackage(self.dir + '/' + self.name + '-static' + '.subpackage.sh', self, virtual=True)
self.subpkgs.append(subpkg)
# Do not depend on itself
self.deps.discard(self.name)
# Do not depend on any sub package

Loading…
Cancel
Save