diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-04-25 12:58:52 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-26 14:36:54 +1000 |
commit | c8824fd9b4cfd5a5925671ce41063764f27d50e8 (patch) | |
tree | 3ff49e304c41cf69b70ed960b36b4b8aa692fa4b /buildtools/wafsamba/wscript | |
parent | 6c79b9f4807f932ad9d09ebfa708d7a75fa35f45 (diff) | |
download | samba-c8824fd9b4cfd5a5925671ce41063764f27d50e8.tar.gz samba-c8824fd9b4cfd5a5925671ce41063764f27d50e8.tar.bz2 samba-c8824fd9b4cfd5a5925671ce41063764f27d50e8.zip |
build: use option_group() not add_option_group()
option_group() ensures we don't end up with duplicate groups
Diffstat (limited to 'buildtools/wafsamba/wscript')
-rw-r--r-- | buildtools/wafsamba/wscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/wscript b/buildtools/wafsamba/wscript index 54802a7562..0413bb4b0e 100644 --- a/buildtools/wafsamba/wscript +++ b/buildtools/wafsamba/wscript @@ -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]"), |