diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2021-02-15 00:59:05 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2021-02-15 00:59:05 +0000 |
commit | df346a9e0facec5bc7e69a106d4e0e3776c966a4 (patch) | |
tree | 8bb22a3173f8bc7e241ce9bcdcb232f5c5a4ce6a /src/backend/solvedeps.py | |
parent | 4a0e1e81a257000e372877360eac419ff2a3c834 (diff) |
backend : enable bdeps by default in solvedeps && install && ebuildinstall modules so we get everything in one go
Diffstat (limited to 'src/backend/solvedeps.py')
-rw-r--r-- | src/backend/solvedeps.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/solvedeps.py b/src/backend/solvedeps.py index d04ebc0..85d245a 100644 --- a/src/backend/solvedeps.py +++ b/src/backend/solvedeps.py @@ -9,7 +9,7 @@ def package(pkgname): areBinaries = [] areSources = [] needsConfig = int() - portageExec = subprocess.Popen(['emerge', '--quiet', '--pretend', '--getbinpkg', '--rebuilt-binaries', '--misspell-suggestion=n', '--fuzzy-search=n'] + list(pkgname), stdout=subprocess.PIPE, stderr=subprocess.PIPE) + portageExec = subprocess.Popen(['emerge', '--quiet', '--pretend', '--getbinpkg', '--rebuilt-binaries', '--with-bdeps=y', '--misspell-suggestion=n', '--fuzzy-search=n'] + list(pkgname), stdout=subprocess.PIPE, stderr=subprocess.PIPE) for portageOutput in io.TextIOWrapper(portageExec.stderr, encoding="utf-8"): if "The following keyword changes are necessary to proceed:" in portageOutput.rstrip(): |