From dfec51964d05a6c4a1b61595bb04144e744d2a37 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 17 Sep 2014 10:25:57 -0400 Subject: [PATCH] fix small thinko with --no-lxvst option --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index 59a8174cb0..ee00359ba4 100644 --- a/wscript +++ b/wscript @@ -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)')