aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2022-08-04 14:11:47 -0400
committerAnthony G. Basile <blueness@gentoo.org>2022-08-04 14:12:20 -0400
commit7a12e4895533aaaabbe46418c28e1c6f52c799a1 (patch)
tree5f07a81942f29b0d45de5c567189d2d61c3dc3b2
parentgrs/Interpret.py: fix typo (diff)
downloadgrss-7a12e4895533aaaabbe46418c28e1c6f52c799a1.tar.gz
grss-7a12e4895533aaaabbe46418c28e1c6f52c799a1.tar.bz2
grss-7a12e4895533aaaabbe46418c28e1c6f52c799a1.zip
bin/grsup: make sure bdeps are also pulled inHEADmaster
See: https://bugs.gentoo.org/863422 Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
-rwxr-xr-xbin/grsup6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/grsup b/bin/grsup
index 8e2679c..5963629 100755
--- a/bin/grsup
+++ b/bin/grsup
@@ -162,7 +162,7 @@ def main():
do_install_kernel = False
if len(opts) == 0:
- args = ['-1', '-g', '-K', '-u', '-D', '-q']
+ args = ['-1', '-g', '-K', '-u', '-D', '-q', '--with-bdeps=y']
if len(myfiles) == 0:
myfiles = ['@world']
args.extend(myfiles)
@@ -171,13 +171,13 @@ def main():
if o == '-h':
usage(rc=0)
elif o == '-r':
- args = ['-1', '-g', '-K', '-D', '-q']
+ args = ['-1', '-g', '-K', '-D', '-q', '--with-bdeps=y']
args.extend(myfiles)
elif o == '-d':
args = ['-C', '-q']
args.extend(myfiles)
elif o == '-D':
- args = ['-g', '-e', '-f', '-q', '@world']
+ args = ['-g', '-e', '-f', '-q', '--with-bdeps=y', '@world']
elif o == '-k':
version = a
do_install_kernel = True