summaryrefslogtreecommitdiff
path: root/make-dist
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2017-03-27 11:22:54 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2017-03-27 11:30:08 -0700
commit55086ef6517bd7294783d08d2b3cd50c330a9e96 (patch)
tree9d06a6909dd620aa6ab26546b5b86c7dd36d9d91 /make-dist
parent8ce827426e5400f2be80ae5d7394b74d8dd90373 (diff)
downloademacs-55086ef6517bd7294783d08d2b3cd50c330a9e96.tar.gz
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-xmake-dist9
1 files changed, 3 insertions, 6 deletions
diff --git a/make-dist b/make-dist
index 96e0a730482..7e1f0dfb96c 100755
--- a/make-dist
+++ b/make-dist
@@ -538,12 +538,9 @@ done
if [ "$with_tests" = "yes" ]; then
echo "Making links to 'test' and its subdirectories"
- for f in `find test -type f`; do
- case $f in
- test/automated/*.log) continue ;;
- test/automated/flymake/warnpred/a.out) continue ;;
- test/automated/Makefile) continue ;;
- esac
+ for f in `find test -type f ! -name '*.log' ! -name a.out \
+ ! -path test/Makefile
+ `; do
ln $f $tempdir/$f
done
fi