Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/grss:master commit in: bin/
Date: Thu, 04 Aug 2022 18:12:37
Message-Id: 1659636740.7a12e4895533aaaabbe46418c28e1c6f52c799a1.blueness@gentoo
1 commit: 7a12e4895533aaaabbe46418c28e1c6f52c799a1
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 4 18:11:47 2022 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 4 18:12:20 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=7a12e489
7
8 bin/grsup: make sure bdeps are also pulled in
9
10 See: https://bugs.gentoo.org/863422
11 Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
12
13 bin/grsup | 6 +++---
14 1 file changed, 3 insertions(+), 3 deletions(-)
15
16 diff --git a/bin/grsup b/bin/grsup
17 index 8e2679c..5963629 100755
18 --- a/bin/grsup
19 +++ b/bin/grsup
20 @@ -162,7 +162,7 @@ def main():
21
22 do_install_kernel = False
23 if len(opts) == 0:
24 - args = ['-1', '-g', '-K', '-u', '-D', '-q']
25 + args = ['-1', '-g', '-K', '-u', '-D', '-q', '--with-bdeps=y']
26 if len(myfiles) == 0:
27 myfiles = ['@world']
28 args.extend(myfiles)
29 @@ -171,13 +171,13 @@ def main():
30 if o == '-h':
31 usage(rc=0)
32 elif o == '-r':
33 - args = ['-1', '-g', '-K', '-D', '-q']
34 + args = ['-1', '-g', '-K', '-D', '-q', '--with-bdeps=y']
35 args.extend(myfiles)
36 elif o == '-d':
37 args = ['-C', '-q']
38 args.extend(myfiles)
39 elif o == '-D':
40 - args = ['-g', '-e', '-f', '-q', '@world']
41 + args = ['-g', '-e', '-f', '-q', '--with-bdeps=y', '@world']
42 elif o == '-k':
43 version = a
44 do_install_kernel = True