vala: fix name of temporary file used in vala rules
commitb08103fedac9fbdf0a24f9192a901ea4b01e45af
authorStefano Lattarini <stefano.lattarini@gmail.com>
Sun, 22 Jan 2012 09:44:42 +0000 (22 10:44 +0100)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Sun, 22 Jan 2012 09:45:39 +0000 (22 10:45 +0100)
tree01ccdc51751134f1e32433fbb3bbbe536e8e5b35
parentd266b5f7fb2fbb7fddb5b8515d57c32b45a50c67
vala: fix name of temporary file used in vala rules

Unquoted `@' characters in a "..." string in the automake script
were causing slightly wrong rules to be emitted in the generated
Makefile.in; i.e., rules like:

  rm -f $@ && echo stamp > $10t

instead of the expected:

  rm -f $@ && echo stamp > $@-t

* automake.in (lang_vala_finish_target): Fix that.
* tests/vala.test: Enhance.
automake.in
tests/vala.test