summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--buildtools/wafsamba/samba3.py7
-rw-r--r--source3/wscript2
2 files changed, 5 insertions, 4 deletions
diff --git a/buildtools/wafsamba/samba3.py b/buildtools/wafsamba/samba3.py
index ebf2565146..9f9bc09cbc 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)
diff --git a/source3/wscript b/source3/wscript
index ef06a7e7b0..aaf8522d26 100644
--- a/source3/wscript
+++ b/source3/wscript
@@ -29,7 +29,7 @@ def set_options(opt):
opt.SAMBA3_ADD_OPTION('winbind')
opt.SAMBA3_ADD_OPTION('ads')
- opt.SAMBA3_ADD_OPTION('cups')
+ opt.SAMBA3_ADD_OPTION('cups', with_name="enable", without_name="disable")
def configure(conf):