diff options
author | Kai Blin <kai@samba.org> | 2010-04-30 14:21:28 +0200 |
---|---|---|
committer | Kai Blin <kai@samba.org> | 2010-05-20 22:16:14 +0200 |
commit | b2431163fccb996b390acbfd65d29d39f92b4679 (patch) | |
tree | c33e36581d77bea87950a072b9d21a595ecd5316 /buildtools | |
parent | be712a8eea486d493d6e0c924d1d8e13312a52af (diff) | |
download | samba-b2431163fccb996b390acbfd65d29d39f92b4679.tar.gz samba-b2431163fccb996b390acbfd65d29d39f92b4679.tar.xz samba-b2431163fccb996b390acbfd65d29d39f92b4679.zip |
s3-waf: replace all - with _ in the configuration option names
Diffstat (limited to 'buildtools')
-rw-r--r-- | buildtools/wafsamba/samba3.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba3.py b/buildtools/wafsamba/samba3.py index 9f9bc09cbc..af8ddf7106 100644 --- a/buildtools/wafsamba/samba3.py +++ b/buildtools/wafsamba/samba3.py @@ -9,7 +9,7 @@ def SAMBA3_ADD_OPTION(opt, option, help=(), dest=None, default=True, if help == (): help = ("Build with %s support" % option) if dest is None: - dest = "with_%s" % option + dest = "with_%s" % option.replace('-', '_') with_val = "--%s-%s" % (with_name, option) without_val = "--%s-%s" % (without_name, option) |