From 4e5a1d2ed29981a29390406bfd1ef46470ac6204 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 12 Apr 2017 09:19:19 -0400 Subject: [PATCH] Makefile: replace TESTS glob with find command --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bd18755a3..361f16125 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ EMACS_LIBS=-l core/core.el EMACS=emacs --batch --eval '(setq user-emacs-directory default-directory)' $(EMACS_LIBS) TEST_EMACS=$(EMACS) --eval '(setq noninteractive nil)' $(EMACS_LIBS) -TESTS=$(patsubst %,-l %, $(wildcard test/**/test-*.el)) +TESTS=$(patsubst %,-l %, $(shell find test/ -type f -name 'test-*.el')) # Tasks all: autoloads install update