cmd_opts += ['--with-submodules']
if args.nocumulate:
cmd_opts += ['--nocumulate']
+ if not args.no_build_count:
+ cmd_opts += ['--use-build-count']
return cmd_opts
group.add_argument('--debug', action='store_true', help='debug output')
group.add_argument('--baselibs', action='store_true', help='create -32bit'
'/-64bit/-x86 rpms for other architectures')
+ group.add_argument('--no-build-count', action='store_true',
+ help='this option disables build count which is set '
+ 'into RPM package name after building package')
group = parser.add_argument_group('build env options')
group.add_argument('-B', '--buildroot',