diff options
author | David Robillard <d@drobilla.net> | 2018-09-16 14:43:39 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-09-16 14:43:39 +0200 |
commit | ef61a9c50aa13b4acf69e0f57b3f0a7671cffc3a (patch) | |
tree | d59b985dc8c28c65fd15832e459e3c67b0a1a02a | |
parent | 01b71a221687efbc02cec56c9b23566ea8983174 (diff) | |
download | fomp.lv2-ef61a9c50aa13b4acf69e0f57b3f0a7671cffc3a.tar.gz fomp.lv2-ef61a9c50aa13b4acf69e0f57b3f0a7671cffc3a.tar.bz2 fomp.lv2-ef61a9c50aa13b4acf69e0f57b3f0a7671cffc3a.zip |
Clean up wscript
-rw-r--r-- | wscript | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,7 +1,9 @@ #!/usr/bin/env python + import os import shutil -import waflib.extras.autowaf as autowaf + +from waflib.extras import autowaf # Version of this package (even if built as a child) FOMP_VERSION = '1.1.0' @@ -33,9 +35,7 @@ def configure(conf): conf.env.pluginlib_PATTERN = pat conf.env.pluginlib_EXT = pat[pat.rfind('.'):] - autowaf.display_summary(conf) - autowaf.display_msg(conf, 'LV2 bundle directory', conf.env.LV2DIR) - print('') + autowaf.display_summary(conf, {'LV2 bundle directory': conf.env.LV2DIR}) def build_plugin(bld, lang, bundle, name, source, defines=None): # Build plugin library |