From: Paul Eggert Date: Sat, 17 Aug 2019 16:15:32 +0000 (-0700) Subject: Port test harness to Solaris 10 X-Git-Tag: emacs-27.0.90~1584 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=643df79279d0a7264361780cc6a7ded54d921947;p=emacs.git Port test harness to Solaris 10 * test/Makefile.in (ELFILES): Port to Solaris 10, where ‘find’ does not support ‘-path’. --- 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))