]> git.eshelyaron.com Git - emacs.git/commit
Skip .#* temporaries when finding sources
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 30 May 2017 16:27:33 +0000 (09:27 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 30 May 2017 16:28:19 +0000 (09:28 -0700)
commit1b01601d3f5d34a267c47e5d1208aa01730dd157
tree20f3d5af4671d411e3c039ce8d7c755bbc839a98
parent91a52e38e5194f19f0d44ae4c2ad88565b28a196
Skip .#* temporaries when finding sources

Without this patch, ‘make check’ can fail with the diagnostic
‘invalid syntax in conditional’ if there is an Emacs temporary
file whose name starts with ‘.#’, because the ‘#’ is treated as
the start of a Make comment.
* lisp/Makefile.in (loaddefs, tagsfiles, check-defun-deps):
* test/Makefile.in (ELFILES):
Skip files starting with ‘.’, so that the .#* files do not cause
trouble.  (We cannot easily skip just files starting with ‘.#’,
since ‘#’ starts a Make comment!)
lisp/Makefile.in
test/Makefile.in