summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2019-12-16 19:45:22 -0700
committerJim Meyering <meyering@fb.com>2019-12-17 21:48:15 -0800
commitc1e1dd6619faf4358ba7d6434dee95eaf6db2195 (patch)
tree6bc6e92273b9570858960af418f2ba181e828de8 /bin
parent5c466eafa75dfa34ff63642d8762efab8c115a2d (diff)
downloadautomake-c1e1dd6619faf4358ba7d6434dee95eaf6db2195.tar.gz
automake: Ensure space after $(LISP) in tags dependencies.
This change fixes automake bug#38139. * bin/automake.in (handle_tags): Concatenate with space in " @config". * t/tags-lisp-space.sh: New test. * t/list-of-tests.mk (handwritten_TESTS): Add it.
Diffstat (limited to 'bin')
-rw-r--r--bin/automake.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/automake.in b/bin/automake.in
index 67a7a9578..2e04bfb9a 100644
--- a/bin/automake.in
+++ b/bin/automake.in
@@ -3708,7 +3708,7 @@ sub handle_tags ()
define_variable ('am__tagged_files',
'$(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)'
- . "@config", INTERNAL);
+ . " @config", INTERNAL);
if (rvar('am__tagged_files')->value_as_list_recursive
|| var ('ETAGS_ARGS') || var ('SUBDIRS'))