Change-Id: I7d49241ef4c98eafd4d51acc87742fe07c6fce12
cmd_opts += ['--disable-debuginfo']
if args.style:
cmd_opts += ['--style=%s' % args.style]
+ if args.export_only:
+ cmd_opts += ['--export-only']
#
if args.package_list:
package_list = args.package_list.split(',')
help='Do not create debuginfo packages when building')
group.add_argument('--style', default='git',
help='specify source type: git, or tar, default is git')
+ group.add_argument('--export-only', action='store_true',
+ help='only export, not building')
parser.set_defaults(alias="lb")
return parser