From: Paul Davis Date: Wed, 17 Sep 2014 14:25:57 +0000 (-0400) Subject: fix small thinko with --no-lxvst option X-Git-Tag: 4.0-rc1~1601^2~134 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;h=dfec51964d05a6c4a1b61595bb04144e744d2a37;p=ardour.git fix small thinko with --no-lxvst option --- 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)')