1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

build: use option_group() not add_option_group()

option_group() ensures we don't end up with duplicate groups
This commit is contained in:
Andrew Tridgell 2010-04-25 12:58:52 +10:00
parent 6c79b9f480
commit c8824fd9b4

View File

@ -21,7 +21,7 @@ def set_options(opt):
opt.tool_options('gnu_dirs')
gr = opt.add_option_group('library handling options')
gr = opt.option_group('library handling options')
gr.add_option('--bundled-libraries',
help=("comma separated list of bundled libraries. May include !LIBNAME to disable bundling a library. Can be 'NONE' or 'ALL' [auto]"),