summaryrefslogtreecommitdiffstats
path: root/lv2.py
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-10-07 12:34:32 +0200
committerDavid Robillard <d@drobilla.net>2017-10-07 12:34:32 +0200
commit91d92e665da5be5414885d0a616e58b6435bbe8a (patch)
treeb128ae6f35aaf42ea74f1e56d4aa2054f44656a1 /lv2.py
parent5da6389551572b3aef2c5205e74153fd225dae10 (diff)
downloadautowaf-91d92e665da5be5414885d0a616e58b6435bbe8a.tar.gz
autowaf-91d92e665da5be5414885d0a616e58b6435bbe8a.tar.bz2
autowaf-91d92e665da5be5414885d0a616e58b6435bbe8a.zip
Clean up options
Diffstat (limited to 'lv2.py')
-rw-r--r--lv2.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/lv2.py b/lv2.py
index dd66441..815987f 100644
--- a/lv2.py
+++ b/lv2.py
@@ -5,11 +5,11 @@ from waflib import Logs
from waflib import Options
def options(opt):
- dirs_options = opt.add_option_group('Installation directories', '')
- opt.add_option('--lv2-user', action='store_true', default=False, dest='lv2_user',
- help='Install LV2 bundles to user location')
- dirs_options.add_option('--lv2dir', type='string',
- help='LV2 bundles [Default: LIBDIR/lv2]')
+ conf_opts = opt.get_option_group('Configuration options')
+ conf_opts.add_option('--lv2-user', action='store_true', default=False, dest='lv2_user',
+ help='install LV2 bundles to user location')
+ conf_opts.add_option('--lv2dir', type='string',
+ help='LV2 bundles [Default: LIBDIR/lv2]')
def configure(conf):
def env_path(parent_dir_var, name):