diff options
| author | Paul Eggert | 2017-03-27 11:22:54 -0700 |
|---|---|---|
| committer | Paul Eggert | 2017-03-27 11:30:08 -0700 |
| commit | 55086ef6517bd7294783d08d2b3cd50c330a9e96 (patch) | |
| tree | 9d06a6909dd620aa6ab26546b5b86c7dd36d9d91 /make-dist | |
| parent | 8ce827426e5400f2be80ae5d7394b74d8dd90373 (diff) | |
| download | emacs-55086ef6517bd7294783d08d2b3cd50c330a9e96.tar.gz emacs-55086ef6517bd7294783d08d2b3cd50c330a9e96.zip | |
Fix obsolete ‘test/automated’ references
* Makefile.in (mostlyclean, clean, maybeclean_dirs, distclean)
(bootstrap-clean, maintainer-clean):
Clean ‘test’, not ‘test/automated’. Test for existence of
subdirectory only for ‘test’, not for directories that should
always exist.
* admin/MAINTAINERS, etc/TODO, lisp/emacs-lisp/bytecomp.el:
* lisp/emacs-lisp/seq.el, lisp/emacs-lisp/thunk.el:
* lisp/man.el (Man-parse-man-k):
* lisp/url/url-domsuf.el, make-dist:
* test/file-organization.org:
Fix obsolete references to test/automated.
Diffstat (limited to 'make-dist')
| -rwxr-xr-x | make-dist | 9 |
1 files changed, 3 insertions, 6 deletions
| @@ -538,12 +538,9 @@ done | |||
| 538 | 538 | ||
| 539 | if [ "$with_tests" = "yes" ]; then | 539 | if [ "$with_tests" = "yes" ]; then |
| 540 | echo "Making links to 'test' and its subdirectories" | 540 | echo "Making links to 'test' and its subdirectories" |
| 541 | for f in `find test -type f`; do | 541 | for f in `find test -type f ! -name '*.log' ! -name a.out \ |
| 542 | case $f in | 542 | ! -path test/Makefile |
| 543 | test/automated/*.log) continue ;; | 543 | `; do |
| 544 | test/automated/flymake/warnpred/a.out) continue ;; | ||
| 545 | test/automated/Makefile) continue ;; | ||
| 546 | esac | ||
| 547 | ln $f $tempdir/$f | 544 | ln $f $tempdir/$f |
| 548 | done | 545 | done |
| 549 | fi | 546 | fi |