diff options
| author | Paul Eggert | 2019-08-17 09:15:32 -0700 |
|---|---|---|
| committer | Paul Eggert | 2019-08-17 09:16:59 -0700 |
| commit | 643df79279d0a7264361780cc6a7ded54d921947 (patch) | |
| tree | 743597cf83ded7e0b64124984e8f8f034f0f5144 | |
| parent | 9e2ac2559ab44767a56add8ff6e0993325f31971 (diff) | |
| download | emacs-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.in | 4 |
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. |
| 201 | SLOW_TESTS = ${srcdir}/lisp/net/tramp-tests.el | 201 | SLOW_TESTS = ${srcdir}/lisp/net/tramp-tests.el |
| 202 | 202 | ||
| 203 | ELFILES := $(sort $(shell find ${srcdir} -path "${srcdir}/manual" -prune -o \ | 203 | ELFILES := $(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)) |