>From 2debb991917a9f213423962fd4b4c4d4ba478d39 Mon Sep 17 00:00:00 2001 From: Ryan Lortie Date: Sat, 7 Jan 2012 01:06:37 -0500 Subject: [PATCH 1/2] tests: fix some bugs in the vala-vpath test There are (trivial) problems in this testcase that would cause the build to fail even if the core issue were resolved. Fix those. --- tests/vala-vpath.test | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/tests/vala-vpath.test b/tests/vala-vpath.test index 9db9de0..5d5d8d7 100755 --- a/tests/vala-vpath.test +++ b/tests/vala-vpath.test @@ -20,8 +20,6 @@ required="valac" . ./defs || Exit 1 -mkdir src - cat >> configure.in << 'END' AC_CONFIG_SRCDIR([hello.vala]) AC_PROG_CC @@ -32,6 +30,7 @@ END cat > Makefile.am <<'END' bin_PROGRAMS = foo +foo_VALAFLAGS = --profile=posix foo_SOURCES = hello.vala END @@ -39,7 +38,6 @@ cat > hello.vala <<'END' void main () { stdout.printf ("foo\n"); - return 0; } END -- 1.7.7.5