From 142faa0b8fba55182f0dea1b718136f83aaf8963 Mon Sep 17 00:00:00 2001 From: "jingui.ren" Date: Tue, 17 Jul 2018 14:22:13 +0800 Subject: [PATCH] Add explanation for --deps and --rdeps Change-Id: I92576d376ff4689ea6dd0e925213b1f7dba42136 Signed-off-by: jingui.ren --- tools/gbs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/gbs b/tools/gbs index f51a2c6..6b35fda 100755 --- a/tools/gbs +++ b/tools/gbs @@ -326,10 +326,10 @@ def build_parser(parser): 'this file will be skipped to be built.') group.add_argument('--deps', action='store_true', help='build specified packages and all packages ' - 'they depend on') + 'they depend on, such as A depends B,C,D, first build B,C,D and then build A') group.add_argument('--rdeps', action='store_true', help='build specified packages and all packages ' - 'depend on them') + 'depend on them, such as A B C depends D, first build D and then build A,B,C') group.add_argument('--disable-debuginfo', action='store_true', help='Do not create debuginfo packages when building') -- 2.7.4