fix small thinko with --no-lxvst option

This commit is contained in:
Paul Davis 2014-09-17 10:25:57 -04:00
parent 9331aa69bd
commit dfec51964d
1 changed files with 1 additions and 1 deletions

View File

@ -452,7 +452,7 @@ def options(opt):
opt.add_option('--lv2dir', type='string', help="install destination for builtin LV2 bundles [Default: LIBDIR/lv2]")
opt.add_option('--lxvst', action='store_true', default=True, dest='lxvst',
help='Compile with support for linuxVST plugins')
opt.add_option('--no-lxvst', action='store_false', default=False, dest='lxvst',
opt.add_option('--no-lxvst', action='store_false', dest='lxvst',
help='Compile without support for linuxVST plugins')
opt.add_option('--nls', action='store_true', default=True, dest='nls',
help='Enable i18n (native language support) (default)')