aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2019-08-17 09:15:32 -0700
committerPaul Eggert2019-08-17 09:16:59 -0700
commit643df79279d0a7264361780cc6a7ded54d921947 (patch)
tree743597cf83ded7e0b64124984e8f8f034f0f5144
parent9e2ac2559ab44767a56add8ff6e0993325f31971 (diff)
downloademacs-643df79279d0a7264361780cc6a7ded54d921947.tar.gz
emacs-643df79279d0a7264361780cc6a7ded54d921947.zip
Port test harness to Solaris 10
* test/Makefile.in (ELFILES): Port to Solaris 10, where ‘find’ does not support ‘-path’.
-rw-r--r--test/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile.in b/test/Makefile.in
index c18099587c0..b7959072083 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -200,8 +200,8 @@ EXCLUDE_TESTS =
200## take longer than all the rest combined) at the start of the list. 200## take longer than all the rest combined) at the start of the list.
201SLOW_TESTS = ${srcdir}/lisp/net/tramp-tests.el 201SLOW_TESTS = ${srcdir}/lisp/net/tramp-tests.el
202 202
203ELFILES := $(sort $(shell find ${srcdir} -path "${srcdir}/manual" -prune -o \ 203ELFILES := $(sort $(shell find ${srcdir} -name manual -prune -o \
204 -path "${srcdir}/data" -prune -o \ 204 -name data -prune -o \
205 -name "*resources" -prune -o \ 205 -name "*resources" -prune -o \
206 ${maybe_exclude_module_tests} \ 206 ${maybe_exclude_module_tests} \
207 -name "*.el" ! -name ".*" -print)) 207 -name "*.el" ! -name ".*" -print))