Skip to content

Commit

Permalink
Require text dependency for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbiehl committed Jun 12, 2023
1 parent 32664b3 commit b9c519c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion alex.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -145,4 +145,4 @@ test-suite tests

default-language: Haskell98

build-depends: base, process
build-depends: base, process, text
2 changes: 1 addition & 1 deletion tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit b9c519c

Please sign in to comment.