From 93ea4d9b50dbd8452513af8ffa611780988ef29c Mon Sep 17 00:00:00 2001 From: michaelh Date: Sat, 5 May 2001 21:30:37 +0000 Subject: [PATCH] Fixed up port auto detection to excude the CVS directory git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@778 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- support/regression/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/regression/Makefile b/support/regression/Makefile index 11c5de43..7d83bb99 100644 --- a/support/regression/Makefile +++ b/support/regression/Makefile @@ -16,7 +16,7 @@ SUBRESULTS_DIR = subresults GENERATE_CASES = generate-cases.py -ALL_PORTS = $(notdir $(wildcard $(PORTS_DIR)/*)) +ALL_PORTS = $(filter-out CVS,$(notdir $(wildcard $(PORTS_DIR)/*))) test-ports: for i in $(ALL_PORTS); do $(MAKE) inter-port-clean test-port PORT=$$i; done -- 2.30.2