diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-04-27 18:55:24 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-04-27 21:10:30 +1000 |
commit | a60889e00695ce2b0c85f01654d4fd42a892b009 (patch) | |
tree | da15f6f1bc89df4b3ee8c6e64d9db48c9ac8652d | |
parent | d526f861c71c1a0c595bc9b9351a02cc630e41c4 (diff) | |
download | samba-a60889e00695ce2b0c85f01654d4fd42a892b009.tar.gz samba-a60889e00695ce2b0c85f01654d4fd42a892b009.tar.bz2 samba-a60889e00695ce2b0c85f01654d4fd42a892b009.zip |
s3-waf Don't enable profiling by default
This is disabled by default in the s3-autoconf build.
Andrew Bartlett
-rw-r--r-- | source3/wscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/wscript b/source3/wscript index d9cc0c6124..45e60aae7c 100644 --- a/source3/wscript +++ b/source3/wscript @@ -59,7 +59,7 @@ def set_options(opt): opt.SAMBA3_ADD_OPTION('syslog') opt.SAMBA3_ADD_OPTION('automount') opt.SAMBA3_ADD_OPTION('aio-support') - opt.SAMBA3_ADD_OPTION('profiling-data') + opt.SAMBA3_ADD_OPTION('profiling-data', default=False) opt.SAMBA3_ADD_OPTION('cluster-support') |