summaryrefslogtreecommitdiffstats
path: root/src/serialisation/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'src/serialisation/wscript')
-rw-r--r--src/serialisation/wscript6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/serialisation/wscript b/src/serialisation/wscript
index 190b1aee..c362f29e 100644
--- a/src/serialisation/wscript
+++ b/src/serialisation/wscript
@@ -14,7 +14,7 @@ def build(bld):
use = 'libingen')
autowaf.use_lib(bld, obj, 'GLIBMM LV2 LILV RAUL SORD SRATOM')
- if bld.env['BUILD_TESTS']:
+ if bld.env.BUILD_TESTS:
obj = bld(features = 'c cshlib cxx cxxshlib',
source = ['Parser.cpp',
'Serialiser.cpp',
@@ -25,6 +25,6 @@ def build(bld):
target = 'ingen_serialisation_profiled',
install_path = '',
use = 'libingen_profiled',
- lib = bld.env['INGEN_TEST_LIBS'],
- cxxflags = bld.env['INGEN_TEST_CXXFLAGS'])
+ lib = bld.env.INGEN_TEST_LIBS,
+ cxxflags = bld.env.INGEN_TEST_CXXFLAGS)
autowaf.use_lib(bld, obj, 'GLIBMM LV2 LILV RAUL SORD SRATOM')