]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
More minor fixups to vala support.
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sun, 19 Apr 2009 06:06:51 +0000 (08:06 +0200)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sun, 19 Apr 2009 06:06:51 +0000 (08:06 +0200)
* automake.in (lang_vala_finish_target): Fix typo in comment.
* doc/automake.texi (Vala Support): Fix typo.  Declare vala
support as "initial".
* NEWS: Likewise, declare vala support as "initial".

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
ChangeLog
NEWS
automake.in
doc/automake.texi

index e0f25c93a3dd341fa7ff8dd87c57ea00b0e8e02f..3fde2b6666be21b355b81e121b6a0d04e08715f7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2009-04-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       More minor fixups to vala support.
+       * automake.in (lang_vala_finish_target): Fix typo in comment.
+       * doc/automake.texi (Vala Support): Fix typo.  Declare vala
+       support as "initial".
+       * NEWS: Likewise, declare vala support as "initial".
+
 2009-04-05  Jürg Billeter  <j@bitron.ch>
 
        Improve Vala support.
diff --git a/NEWS b/NEWS
index fd45cc0b627d8448af6482e69236efaace9db66d..b97dafe93cb832b8197268c663bd20a669a59e7a 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -2,7 +2,8 @@ New in 1.10c:
 
 * Languages changes:
 
-  - Vala 0.7.0 and later is supported now.
+  - There is initial support for the Vala programming language, when using
+    Vala 0.7.0 or later.
 
 * Miscellaneous Changes:
 
index a7560897d345ed2aa5c67b59a1a8c1784b687ab8..67e51a4e6c45f69bf5fef0d5c9b39635df19007a 100755 (executable)
@@ -5957,7 +5957,7 @@ sub lang_vala_finish_target ($$)
   $clean_files{"${derived}_vala.stamp"} = MAINTAINER_CLEAN;
 }
 
-# Add output ruless to invoke valac and create stamp file as a witness
+# Add output rules to invoke valac and create stamp file as a witness
 # to handle multiple outputs. This function is called after all source
 # file processing is done.
 sub lang_vala_finish
index fc3c434c4a6b9f90864f03e720772169d997de78..89f1848004d9955501bd795dd781b61a6d8d2c14 100644 (file)
@@ -6603,14 +6603,15 @@ the @code{_LDFLAGS} variable for the program.
 @cindex Vala Support
 @cindex Support for Vala
 
-Automake provides support for Vala (@uref{http://www.vala-project.org/}).
+Automake provides initial support for Vala
+(@uref{http://www.vala-project.org/}).
 This requires valac version 0.7.0 or later.
 
 @example
 foo_SOURCES = foo.vala bar.vala zardoc.c
 @end example
 
-Any @file{.vala} file listed in a @code{_SOURCE} variable will be
+Any @file{.vala} file listed in a @code{_SOURCES} variable will be
 compiled into C code by the Vala compiler. The generated @file{.c} files are
 distributed. The end user does not need to have a Vala compiler installed.