make phone-home option default to False even for non-debug builds

git-svn-id: svn://localhost/ardour2/branches/3.0@10170 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2011-09-30 11:52:35 +00:00
parent 0630f834a0
commit 00afb84446
1 changed files with 1 additions and 1 deletions

View File

@ -377,7 +377,7 @@ def options(opt):
opt.add_option('--nls', action='store_true', default=True, dest='nls',
help='Enable i18n (native language support) (default)')
opt.add_option('--no-nls', action='store_false', dest='nls')
opt.add_option('--phone-home', action='store_false', default=True, dest='phone_home')
opt.add_option('--phone-home', action='store_false', default=False, dest='phone_home')
opt.add_option('--stl-debug', action='store_true', default=False, dest='stl_debug',
help='Build with debugging for the STL')
opt.add_option('--rt-alloc-debug', action='store_true', default=False, dest='rt_alloc_debug',