From c4c1f6d076f8301c6b417badd037dfefbf6d414d Mon Sep 17 00:00:00 2001 From: krasimir Date: Wed, 10 Sep 2008 08:55:16 +0000 Subject: print the search path when we can't find a module --- src/GF/Compile/ReadFiles.hs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/GF/Compile') diff --git a/src/GF/Compile/ReadFiles.hs b/src/GF/Compile/ReadFiles.hs index cd2faec15..956114c1c 100644 --- a/src/GF/Compile/ReadFiles.hs +++ b/src/GF/Compile/ReadFiles.hs @@ -38,6 +38,7 @@ import qualified Data.Map as Map import System.Time import System.Directory import System.FilePath +import Text.PrettyPrint type ModName = String type ModEnv = Map.Map ModName (ClockTime,[ModName]) @@ -92,7 +93,8 @@ getAllFiles opts ps env file = do case mb_gfoFile of Just gfoFile -> do gfoTime <- ioeIO $ getModificationTime gfoFile return (gfoFile, Nothing, Just gfoTime) - Nothing -> ioeErr $ Bad ("File " ++ gfFile name ++ " does not exist.") + Nothing -> ioeErr $ Bad (render (text "File" <+> text (gfFile name) <+> text "does not exist." $$ + text "searched in:" <+> vcat (map text ps))) let mb_envmod = Map.lookup name env -- cgit v1.2.3