From d5bc9ecf871b00e1e66706040717e6b48444c05a Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sun, 2 Feb 2020 00:40:55 -0500 Subject: [PATCH] test/Doctests.hs: update the include path for newer cabals. --- test/Doctests.hs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/Doctests.hs b/test/Doctests.hs index 83bc612..6025a8d 100644 --- a/test/Doctests.hs +++ b/test/Doctests.hs @@ -10,4 +10,8 @@ find_sources = find always (extension ==? ".hs") "src/" main :: IO () main = do sources <- find_sources - doctest $ ["-isrc", "-idist/build/autogen"] ++ sources + doctest $ ["-isrc", + "-idist/build/autogen", -- old cabal versions + "-idist/build/mailbox-count/autogen" -- new cabal versions + ] + ++ sources -- 2.43.2