automake-ng
[Top][All Lists]
Advanced

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

[Automake-NG] [PATCH 3/4] [ng] refactor: new internal make variable 'am.


From: Stefano Lattarini
Subject: [Automake-NG] [PATCH 3/4] [ng] refactor: new internal make variable 'am.conf.no-installinfo'
Date: Sun, 12 Aug 2012 14:49:48 +0200

It tells whether the '.info' files must be installed by default (usually
yes, unless the "no-installinfo" automake option is used).  This is just
a preparatory change, in view of future ones.

* lib/am/automake.in (generate_makefile): Define it here.

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

diff --git a/automake.in b/automake.in
index ea1f01a..1b56581 100644
--- a/automake.in
+++ b/automake.in
@@ -6673,6 +6673,8 @@ sub generate_makefile ($$)
                    $relative_dir eq '.' ? "yes" : "");
   define_variable ('am.conf.check-news', INTERNAL,
                    option 'check-news' ? "yes" : "");
+  define_variable ('am.conf.no-installinfo', INTERNAL,
+                   option 'no-installinfo' ? "yes" : "");
   define_variable ('am.conf.aux-dir', INTERNAL, $am_config_aux_dir);
   define_variable ('am.relpath.makefile', INTERNAL, basename ($makefile));
   define_variable ('am.relpath.makefile.am', INTERNAL,
-- 
1.7.12.rc0




reply via email to

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