From: Michael Orlitzky Date: Sat, 2 Mar 2019 01:44:21 +0000 (-0500) Subject: test/Doctests.hs: support new Cabal autogen path in doctests. X-Git-Tag: 0.5.1~11 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=haeredes.git;a=commitdiff_plain;h=5107e4fd9a830f448059a84cf4d4bd477fdb4f19;hp=5107e4fd9a830f448059a84cf4d4bd477fdb4f19 test/Doctests.hs: support new Cabal autogen path in doctests. Since the last haeredes release, Cabal has moved its auto-generated modules from dist/build/autogen to dist/build/$component/autogen, breaking our doctests which need to load the Paths_haeredes module. These paths are passed to the doctest runner as a list, so it's easy to support both: we now just pass both paths. ---