From 1a074e2c659e51bb03f8a95907a158b5363ee549 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Tue, 7 Jan 2025 22:02:26 +0100 Subject: [PATCH] Fix wildcard in data files to include all files in data/ This is not very nice, but calling all files `*.data` is superfluous since they're already in a data file directory. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8c4ae4d..02ace53 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ DISTFILES = \ .clang-format TESTFILES = $(wildcard tests/*.test) -TESTDATAFILES = $(wildcard tests/data/*.data) +TESTDATAFILES = $(wildcard tests/data/*) VERSION=1.7 RELEASEDIR=mt-st-$(VERSION)