Add explanation for --deps and --rdeps 26/185826/1
authorjingui.ren <jingui.ren@samsung.com>
Tue, 17 Jul 2018 06:22:13 +0000 (14:22 +0800)
committerjingui.ren <jingui.ren@samsung.com>
Fri, 3 Aug 2018 01:14:06 +0000 (09:14 +0800)
Change-Id: I92576d376ff4689ea6dd0e925213b1f7dba42136
Signed-off-by: jingui.ren <jingui.ren@samsung.com>
tools/gbs

index f51a2c6..6b35fda 100755 (executable)
--- 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')