From 72236450b116292551daec5255d4915ff431bf4b Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Wed, 24 Aug 2022 09:48:59 -0400 Subject: [PATCH] test/Doctests.hs: fix include paths with newer cabal. --- test/Doctests.hs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/Doctests.hs b/test/Doctests.hs index 81bc620..eb8b671 100644 --- a/test/Doctests.hs +++ b/test/Doctests.hs @@ -10,4 +10,7 @@ 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 + "-idist/build/list-remote-forwards/autogen" -- new cabal + ] ++ sources -- 2.43.2