diff options
Diffstat (limited to 'buildtools')
-rw-r--r-- | buildtools/wafsamba/samba3.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/buildtools/wafsamba/samba3.py b/buildtools/wafsamba/samba3.py index ebf2565146a..9f9bc09cbcc 100644 --- a/buildtools/wafsamba/samba3.py +++ b/buildtools/wafsamba/samba3.py @@ -4,14 +4,15 @@ import Options from optparse import SUPPRESS_HELP -def SAMBA3_ADD_OPTION(opt, option, help=(), dest=None, default=True): +def SAMBA3_ADD_OPTION(opt, option, help=(), dest=None, default=True, + with_name="with", without_name="without"): if help == (): help = ("Build with %s support" % option) if dest is None: dest = "with_%s" % option - with_val = "--with-%s" % option - without_val = "--without-%s" % option + with_val = "--%s-%s" % (with_name, option) + without_val = "--%s-%s" % (without_name, option) opt.add_option(with_val, help=help, action="store_true", dest=dest, default=default) |