diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2008-10-10 07:44:01 +0200 |
---|---|---|
committer | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2008-10-10 07:44:01 +0200 |
commit | ae4ab510f17e57b6a4998c590df7566fb47d73a9 (patch) | |
tree | 7069ad265f42db05cf38a77f6f73a6f65ae978a2 /tests/vala2.test | |
parent | da239edeee81b4794025de2d9370f733d3423a59 (diff) | |
download | automake-ae4ab510f17e57b6a4998c590df7566fb47d73a9.tar.gz |
Minor fixups for Vala support.
* automake.in: $(VALAFLAGS) comes after $(AM_VALAFLAGS).
* doc/automake.texi (Vala Support): Add some references,
document AM_VALAFLAGS, streamline a bit.
* lib/am/vala.am: Copyright blurb.
* m4/vala.m4 (AM_PROG_VALAC): Rewrite using AS_VERSION_COMPARE.
* tests/vala.test: Fix minor nits.
* tests/vala1.test: Likewise.
* tests/vala2.test: Likewise.
* tests/vala3.test: Likewise.
* tests/vala4.test: New test, for version argument of
AM_PROG_VALAC.
* tests/Makefile.am: Update.
Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
Diffstat (limited to 'tests/vala2.test')
-rwxr-xr-x | tests/vala2.test | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/vala2.test b/tests/vala2.test index 03ce33c37..ce568d552 100755 --- a/tests/vala2.test +++ b/tests/vala2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2006 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2006, 2008 Free Software Foundation, +# Inc. # # This file is part of GNU Automake. # @@ -21,7 +22,7 @@ # Test to make foo_PKGNAME variables are considered. required="libtool" -. ./defs || exit 1 +. ./defs || Exit 1 set -e @@ -45,10 +46,9 @@ END $ACLOCAL $AUTOMAKE -a -grep -w -- 'VALAC' 'Makefile.in' -grep -w -- 'src_libzardoz_la_OBJECTS' 'Makefile.in' -grep -w -- 'src_libzardoz_la_vala.stamp' 'Makefile.in' -grep -w -- '--library=zardoz+-3.0' 'Makefile.in' -grep -w -- 'src/zardoz-foo\.c' 'Makefile.in' -grep -w -- 'src/zardoz-foo\.h' 'Makefile.in' - +grep 'VALAC' Makefile.in +grep 'src_libzardoz_la_OBJECTS' Makefile.in +grep 'src_libzardoz_la_vala.stamp' Makefile.in +grep ' --library=zardoz+-3.0' Makefile.in +grep 'src/zardoz-foo\.c' Makefile.in +grep 'src/zardoz-foo\.h' Makefile.in |