From 643df79279d0a7264361780cc6a7ded54d921947 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 17 Aug 2019 09:15:32 -0700 Subject: [PATCH] Port test harness to Solaris 10 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * 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 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)) -- 2.39.2