From 2630078cdd73d76fea4ba12524e2f7712e5de459 Mon Sep 17 00:00:00 2001 From: David Cock Date: Fri, 28 Aug 2015 13:33:04 +0200 Subject: [PATCH] Better description of hake phases Signed-off-by: David Cock --- hake/Main.hs | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hake/Main.hs b/hake/Main.hs index d86cf13..c2a22c0 100644 --- a/hake/Main.hs +++ b/hake/Main.hs @@ -628,12 +628,12 @@ body = do " (" ++ opt_abs_installdir opts ++ ")") -- Find Hakefiles - liftIO $ putStrLn "Reading directory tree..." + liftIO $ putStrLn "Scanning directory tree..." (relfiles, hakefiles) <- liftIO $ listFiles (opt_sourcedir opts) let srcDB = tdbBuild relfiles -- Open the Makefile and write the preamble - liftIO $ putStrLn $ "Opening " ++ (opt_makefilename opts) + liftIO $ putStrLn $ "Creating " ++ (opt_makefilename opts) ++ "..." makefile <- liftIO $ openFile(opt_makefilename opts) WriteMode liftIO $ makefilePreamble makefile opts args liftIO $ makeHakeDeps makefile opts $ map fst hakefiles -- 1.7.2.5