summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2019-08-17 09:15:32 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2019-08-17 09:16:59 -0700
commit643df79279d0a7264361780cc6a7ded54d921947 (patch)
tree743597cf83ded7e0b64124984e8f8f034f0f5144 /test
parent9e2ac2559ab44767a56add8ff6e0993325f31971 (diff)
downloademacs-643df79279d0a7264361780cc6a7ded54d921947.tar.gz
Port test harness to Solaris 10
* test/Makefile.in (ELFILES): Port to Solaris 10, where ‘find’ does not support ‘-path’.
Diffstat (limited to 'test')
-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 =
## take longer than all the rest combined) at the start of the list.
SLOW_TESTS = ${srcdir}/lisp/net/tramp-tests.el
-ELFILES := $(sort $(shell find ${srcdir} -path "${srcdir}/manual" -prune -o \
- -path "${srcdir}/data" -prune -o \
+ELFILES := $(sort $(shell find ${srcdir} -name manual -prune -o \
+ -name data -prune -o \
-name "*resources" -prune -o \
${maybe_exclude_module_tests} \
-name "*.el" ! -name ".*" -print))