Browse Source
build-package.sh: allow static packages to be in dependencies
emacs-27
Leonid Plyushch
5 years ago
No known key found for this signature in database
GPG Key ID: 45F2964132545795
1 changed files with
3 additions and
0 deletions
-
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 |
|
|
|