From 91d92e665da5be5414885d0a616e58b6435bbe8a Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 7 Oct 2017 12:34:32 +0200 Subject: Clean up options --- lv2.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lv2.py') 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): -- cgit v1.2.1