This is just a preparatory refactoring in view of future changes. * automake.in (handle_tags): To decide whether to include the tags rules, rely on whether the automake-defined variable $(SOURCES) is non-empty, rather than on the fact that '&saw_sources(1)' returns true.
Signed-off-by: Stefano Lattarini <stefano.lattar...@gmail.com> --- automake.in | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/automake.in b/automake.in index cd3d7bc..d5091ec 100644 --- a/automake.in +++ b/automake.in @@ -3663,9 +3663,8 @@ sub handle_tags &depend ('.MAKE', 'cscopelist-recursive'); } - if (&saw_sources_p (1) - || var ('ETAGS_ARGS') - || @tag_deps) + if (rvar('am__tagged_files')->value_as_list_recursive + || var ('ETAGS_ARGS') || @tag_deps) { my @config; foreach my $spec (@config_headers) -- 1.7.9.5