aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2013-11-02 22:12:59 +0200
committerEli Zaretskii2013-11-02 22:12:59 +0200
commitbd9565cdfbb06616a6601c7a00489906a9d1acaf (patch)
treec576ab274f80253279964f1b7878a2d8549c2ea1
parent6f8225faeead008666ed1d232a995dcceb2c2c37 (diff)
downloademacs-bd9565cdfbb06616a6601c7a00489906a9d1acaf.tar.gz
emacs-bd9565cdfbb06616a6601c7a00489906a9d1acaf.zip
Fix commentary in lisp/Makefile.in.
-rw-r--r--lisp/Makefile.in12
1 files changed, 5 insertions, 7 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index 1ac6338bcd1..d726f62dbb0 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -219,13 +219,11 @@ lisptagsfiles2 = $(srcdir)/*/*.el
219lisptagsfiles3 = $(srcdir)/*/*/*.el 219lisptagsfiles3 = $(srcdir)/*/*/*.el
220lisptagsfiles4 = $(srcdir)/*/*/*/*.el 220lisptagsfiles4 = $(srcdir)/*/*/*/*.el
221 221
222## Apparently the echo | sed | xargs is to stop the command line 222## The echo | sed | xargs is to stop the command line getting too long
223## getting too long on MS Windows. It will make no difference on 223## on MS Windows, when the MSYS Bash passes it to a MinGW compiled
224## POSIX systems, where the shell does the globbing right away, before 224## etags. It might be better to use find in a similar way to
225## passing the expanded arguments to echo. 225## compile-main. But maybe this is not even necessary any more now
226## The POSIX way would be to use find in a similar way to compile-main. 226## that this uses relative filenames.
227## But maybe this is not even necessary any more now that this uses
228## relative filenames.
229TAGS: $(lisptagsfiles1) $(lisptagsfiles2) $(lisptagsfiles3) $(lisptagsfiles4) 227TAGS: $(lisptagsfiles1) $(lisptagsfiles2) $(lisptagsfiles3) $(lisptagsfiles4)
230 rm -f $@ 228 rm -f $@
231 touch $@ 229 touch $@