diff options
| author | Eli Zaretskii | 2013-11-02 22:12:59 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2013-11-02 22:12:59 +0200 |
| commit | bd9565cdfbb06616a6601c7a00489906a9d1acaf (patch) | |
| tree | c576ab274f80253279964f1b7878a2d8549c2ea1 | |
| parent | 6f8225faeead008666ed1d232a995dcceb2c2c37 (diff) | |
| download | emacs-bd9565cdfbb06616a6601c7a00489906a9d1acaf.tar.gz emacs-bd9565cdfbb06616a6601c7a00489906a9d1acaf.zip | |
Fix commentary in lisp/Makefile.in.
| -rw-r--r-- | lisp/Makefile.in | 12 |
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 | |||
| 219 | lisptagsfiles3 = $(srcdir)/*/*/*.el | 219 | lisptagsfiles3 = $(srcdir)/*/*/*.el |
| 220 | lisptagsfiles4 = $(srcdir)/*/*/*/*.el | 220 | lisptagsfiles4 = $(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. | ||
| 229 | TAGS: $(lisptagsfiles1) $(lisptagsfiles2) $(lisptagsfiles3) $(lisptagsfiles4) | 227 | TAGS: $(lisptagsfiles1) $(lisptagsfiles2) $(lisptagsfiles3) $(lisptagsfiles4) |
| 230 | rm -f $@ | 228 | rm -f $@ |
| 231 | touch $@ | 229 | touch $@ |