commit:     7a12e4895533aaaabbe46418c28e1c6f52c799a1
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Thu Aug  4 18:11:47 2022 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Thu Aug  4 18:12:20 2022 +0000
URL:        https://gitweb.gentoo.org/proj/grss.git/commit/?id=7a12e489

bin/grsup: make sure bdeps are also pulled in

See: https://bugs.gentoo.org/863422
Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>

 bin/grsup | 6 +++---
 1 file 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

Reply via email to