[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] master 643df79: Port test harness to Solaris 10
From: |
Paul Eggert |
Subject: |
[Emacs-diffs] master 643df79: Port test harness to Solaris 10 |
Date: |
Sat, 17 Aug 2019 12:17:03 -0400 (EDT) |
branch: master
commit 643df79279d0a7264361780cc6a7ded54d921947
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>
Port test harness to Solaris 10
* test/Makefile.in (ELFILES): Port to Solaris 10, where
‘find’ does not support ‘-path’.
---
test/Makefile.in | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/test/Makefile.in b/test/Makefile.in
index c180995..b795907 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))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] master 643df79: Port test harness to Solaris 10,
Paul Eggert <=