automake-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 5/6] automake: fix botched call to 'check_user_variables'


From: Stefano Lattarini
Subject: [PATCH 5/6] automake: fix botched call to 'check_user_variables'
Date: Tue, 17 Apr 2012 10:40:20 +0200

* automake.in (lang_vala_finish_target): The 'check_user_variables' function
takes an array, not an array ref, as argument; adjust its call accordingly.

Signed-off-by: Stefano Lattarini <address@hidden>
---
 automake.in |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/automake.in b/automake.in
index d8235ab..38e09dc 100644
--- a/automake.in
+++ b/automake.in
@@ -5874,7 +5874,7 @@ sub lang_vala_finish_target ($$)
 
   # VALAFLAGS is a user variable (per GNU Standards),
   # it should not be overridden in the Makefile...
-  check_user_variables ['VALAFLAGS'];
+  check_user_variables 'VALAFLAGS';
 
   my $dirname = dirname ($name);
 
-- 
1.7.9.5




reply via email to

[Prev in Thread] Current Thread [Next in Thread]