summaryrefslogtreecommitdiff
path: root/lisp/Makefile.in
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2018-06-18 12:14:24 -0700
committerGlenn Morris <rgm@gnu.org>2018-06-18 12:14:24 -0700
commitef02c9fd1a6bdafebc2bba58a551ec11e29bd394 (patch)
tree6d449f44290ca3506af22e8851118b39028c9c7c /lisp/Makefile.in
parente347754df7b8ec6a6e5d1f1a7749f5a19746d55f (diff)
parent5bdc344780faabbc91b7e55306b2071dffb44fa2 (diff)
downloademacs-ef02c9fd1a6bdafebc2bba58a551ec11e29bd394.tar.gz
Merge from origin/emacs-26
5bdc344 ; Reduce quoting for SELECTOR in 'make -C test' (Bug#31744) b6b793b ; test/Makefile.in: Add TEST_INTERACTIVE option (Bug#31744). 1aa906f Make 'tags' targets respect --with-silent-rules (Bug#31744) Conflicts: test/Makefile.in test/README
Diffstat (limited to 'lisp/Makefile.in')
-rw-r--r--lisp/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index 19b01802268..ccc5323b524 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -263,9 +263,9 @@ ${ETAGS}: FORCE
## compile-main. But maybe this is not even necessary any more now
## that this uses relative filenames.
TAGS: ${ETAGS} ${tagsfiles}
- rm -f $@
- touch $@
- ls ${tagsfiles} | xargs $(XARGS_LIMIT) "${ETAGS}" -a -o $@
+ $(AM_V_at)rm -f $@
+ $(AM_V_at)touch $@
+ $(AM_V_GEN)ls ${tagsfiles} | xargs $(XARGS_LIMIT) "${ETAGS}" -a -o $@
# The src/Makefile.in has its own set of dependencies and when they decide