File: fix-dist-path

package info (click to toggle)
haskell-ed25519 0.0.5.0-18
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 608 kB
  • sloc: ansic: 3,905; haskell: 303; makefile: 4
file content (13 lines) | stat: -rw-r--r-- 524 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
Index: b/tests/doctests.hs
===================================================================
--- a/tests/doctests.hs
+++ b/tests/doctests.hs
@@ -14,7 +14,7 @@ main = allSources >>= \sources -> doctes
 
 allSources :: IO [FilePath]
 allSources = liftM2 (++) (getFiles ".hs" "src")
-                         (getFiles ".o" "dist/build/src/cbits")
+                         (getFiles ".o" "dist-ghc/build/src/cbits")
 
 getFiles :: String -> FilePath -> IO [FilePath]
 getFiles ext root = filter (isSuffixOf ext) <$> go root