]> git.eshelyaron.com Git - emacs.git/commitdiff
Port test harness to Solaris 10
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 17 Aug 2019 16:15:32 +0000 (09:15 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 17 Aug 2019 16:16:59 +0000 (09:16 -0700)
* test/Makefile.in (ELFILES): Port to Solaris 10, where
‘find’ does not support ‘-path’.

test/Makefile.in

index c18099587c0b91e358d6abe7894111f0ff6d725f..b795907208322cd9de2b5325f74e1f3ef9d3a54c 100644 (file)
@@ -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))