From 8f2f92206340b860f65a57c4118c3e4472502d18 Mon Sep 17 00:00:00 2001
From: Tej Chajed <tchajed@mit.edu>
Date: Fri, 11 Dec 2020 12:44:41 -0600
Subject: [PATCH] Fix TESTFILES generation on macOS

BSD's find adds an extra / when invoked on tests/, and this confuses the
test dependency management.
---
 Makefile.coq.local | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile.coq.local b/Makefile.coq.local
index a719cc52e..2087b6ff3 100644
--- a/Makefile.coq.local
+++ b/Makefile.coq.local
@@ -8,7 +8,7 @@ MAKE_REF:=
 real-all: $(if $(NO_TEST),,test)
 
 # the test suite
-TESTFILES:=$(shell find tests/ -name "*.v")
+TESTFILES:=$(shell find tests -name "*.v")
 NORMALIZER:=test-normalizer.sed
 
 test: $(TESTFILES:.v=.vo)
-- 
GitLab