diff options
author | Jürg Billeter <j@bitron.ch> | 2009-09-13 18:02:22 +0200 |
---|---|---|
committer | Jürg Billeter <j@bitron.ch> | 2009-09-13 18:02:22 +0200 |
commit | 873439d26c1f30a20d9e41dc7231c057fd2c8195 (patch) | |
tree | b702531c94454c41564703e33e77a2dbba75f191 /tests/testrunner.sh | |
parent | 62ac65a9f5051001328f20b78d7e4bed3c7ccef4 (diff) | |
download | vala-873439d26c1f30a20d9e41dc7231c057fd2c8195.tar.gz |
Fix testrunner to support multiple packages
Diffstat (limited to 'tests/testrunner.sh')
-rwxr-xr-x | tests/testrunner.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testrunner.sh b/tests/testrunner.sh index 57d4d2bce..799c16eb2 100755 --- a/tests/testrunner.sh +++ b/tests/testrunner.sh @@ -58,7 +58,7 @@ function sourceheader() { function sourceend() { if [ -n "$PROGRAM" ]; then - echo "$VALAC $VALAFLAGS $(echo $PACKAGES | xargs -n 1 -r echo --pkg) -C $SOURCEFILE" >> build + echo "$VALAC $VALAFLAGS $(echo $PACKAGES | xargs -n 1 -r echo -n " --pkg") -C $SOURCEFILE" >> build echo "$CC $CFLAGS -o $PROGRAM$EXEEXT $PROGRAM.c \$(pkg-config --cflags --libs glib-2.0 gobject-2.0 $PACKAGES) $LDLIBS" >> build echo "./$PROGRAM$EXEEXT" > check fi |