From: jingui.ren Date: Tue, 17 Jul 2018 06:22:13 +0000 (+0800) Subject: Add explanation for --deps and --rdeps X-Git-Tag: submit/devel/20190730.074523~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=142faa0b8fba55182f0dea1b718136f83aaf8963;p=tools%2Fgbs.git Add explanation for --deps and --rdeps Change-Id: I92576d376ff4689ea6dd0e925213b1f7dba42136 Signed-off-by: jingui.ren --- 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')