diff options
author | David Robillard <d@drobilla.net> | 2020-08-05 23:36:06 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-08-06 17:34:42 +0200 |
commit | 61e85b7553640201d40c31aaa09f5b6184b658ee (patch) | |
tree | 58f91ffbd870f0c62e4e4836e87519fcf2b3a354 | |
parent | 17888cbea7107d22034d761ee6f5abceedf6e6d3 (diff) | |
download | lilv-61e85b7553640201d40c31aaa09f5b6184b658ee.tar.gz lilv-61e85b7553640201d40c31aaa09f5b6184b658ee.tar.bz2 lilv-61e85b7553640201d40c31aaa09f5b6184b658ee.zip |
Fix log output of test compilation commands
Waf displays the first file.
-rw-r--r-- | wscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -462,8 +462,8 @@ def build(bld): testdir = testdir.replace('\\', '/') for test in tests: obj = bld(features = 'c cprogram', - source = ['test/lilv_test_utils.c', - 'test/%s.c' % test], + source = ['test/%s.c' % test, + 'test/lilv_test_utils.c'], includes = ['.', './src'], use = 'liblilv_profiled', lib = test_libs, |