diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-04-18 12:44:07 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-18 15:00:37 +1000 |
commit | d81eccc0baa26ae4c92680085b28687897ee9904 (patch) | |
tree | 20c42f1906afacb1f07f35aa4ceb906674c8e7a9 /lib/uid_wrapper/wscript | |
parent | d3dea9b1248edf9a3e96e88bea8de3e098fbc2fe (diff) | |
download | samba-d81eccc0baa26ae4c92680085b28687897ee9904.tar.gz samba-d81eccc0baa26ae4c92680085b28687897ee9904.tar.xz samba-d81eccc0baa26ae4c92680085b28687897ee9904.zip |
s4-waf: put the --xxx-wrapper options in 'developer options' group
Diffstat (limited to 'lib/uid_wrapper/wscript')
-rw-r--r-- | lib/uid_wrapper/wscript | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/uid_wrapper/wscript b/lib/uid_wrapper/wscript index 9eb828866f..434d4fa5a8 100644 --- a/lib/uid_wrapper/wscript +++ b/lib/uid_wrapper/wscript @@ -3,7 +3,8 @@ import Options def set_options(opt): - opt.add_option('--enable-uid-wrapper', + gr = opt.option_group('developer options') + gr.add_option('--enable-uid-wrapper', help=("Turn on uid wrapper library (default=no)"), action="store_true", dest='enable_uid_wrapper', default=False) |