From 939b6056a7399f15c0c06230920942a42e12927a Mon Sep 17 00:00:00 2001 From: Alex Biehl Date: Mon, 12 Jun 2023 11:27:36 +0200 Subject: [PATCH] Require text dependency for tests --- tests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Makefile b/tests/Makefile index 765a2eae..02a99fe9 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -99,7 +99,7 @@ ALL_TESTS = $(patsubst %.hs, %.run, $(ALL_TEST_HS)) ./$< %$(HS_PROG_EXT) : %.hs - $(HC) $(HC_OPTS) -package array -package bytestring $($*_LD_OPTS) $< -o $@ + $(HC) $(HC_OPTS) -package array -package bytestring -package text $($*_LD_OPTS) $< -o $@ all :: $(ALL_TESTS)