diff options
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -34,8 +34,7 @@ def configure(conf): conf.env.pluginlib_PATTERN = pat conf.env.pluginlib_EXT = pat[pat.rfind('.'):] - autowaf.display_msg(conf, "LV2 bundle directory", - conf.env.LV2DIR) + autowaf.display_msg(conf, "LV2 bundle directory", conf.env.LV2DIR) print('') def build_plugin(bld, lang, bundle, name, source, defines=None): @@ -49,7 +48,8 @@ def build_plugin(bld, lang, bundle, name, source, defines=None): name = name, target = os.path.join(bundle, name), uselib = ['LV2'], - install_path = '${LV2DIR}/' + bundle) + install_path = '${LV2DIR}/' + bundle, + lib = ['m']) if defines != None: obj.defines = defines |