Fix a typo in test "79 shared subproject".

Signed-off-by: Hemmo Nieminen <hemmo.nieminen@iki.fi>
This commit is contained in:
Hemmo Nieminen 2015-04-09 00:05:46 +03:00 committed by Jussi Pakkanen
parent d532dbef42
commit 0747402e6a
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ B = subproject('B')
b = B.get_variable('b')
C = subproject('C')
c = B.get_variable('c')
c = C.get_variable('c')
a = executable('a', 'a.c', link_with : [b, c])
test('a test', a)