diff options
author | David Robillard <d@drobilla.net> | 2011-09-27 19:57:14 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-09-27 19:57:14 +0000 |
commit | 617e0ac0f6baa671f0f4465eb95e14a4cea597d6 (patch) | |
tree | 1209f6f747941e25dbdc7941f0d68f69b1cd44d1 | |
parent | cd0dff304696d6126f6227970ba2581eb263ae8b (diff) | |
download | mda.lv2-617e0ac0f6baa671f0f4465eb95e14a4cea597d6.tar.gz mda.lv2-617e0ac0f6baa671f0f4465eb95e14a4cea597d6.tar.bz2 mda.lv2-617e0ac0f6baa671f0f4465eb95e14a4cea597d6.zip |
Load tools before autowaf.configure so e.g. --debug works correctly.
git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/mdala.lv2@3497 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | wscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -15,14 +15,14 @@ top = '.' out = 'build' def options(opt): - autowaf.set_options(opt) opt.load('compiler_cxx') + autowaf.set_options(opt) def configure(conf): + conf.load('compiler_cxx') autowaf.configure(conf) conf.line_just = 23 autowaf.display_header('Mdala Configuration') - conf.load('compiler_cxx') autowaf.check_header(conf, 'c', 'lv2/lv2plug.in/ns/lv2core/lv2.h') |