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.
This commit is contained in:
Iustin Pop
2025-01-07 22:02:26 +01:00
parent ba46d54458
commit 1a074e2c65

View File

@@ -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)