diff options
author | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-11-20 22:57:44 +0100 |
---|---|---|
committer | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-11-20 22:57:44 +0100 |
commit | 55d2efafbbd6659ddc9bf68e6fce0fc1d4c31cb9 (patch) | |
tree | 9d737fb010b12644f480e427599b2ab78d6dab20 | |
parent | ce6df1b9dd2e73f174d006a36f7b0491461c82e7 (diff) | |
download | metatile-55d2efafbbd6659ddc9bf68e6fce0fc1d4c31cb9.tar metatile-55d2efafbbd6659ddc9bf68e6fce0fc1d4c31cb9.zip |
-no-recomp because we're doing our own recompilation checking
darcs-hash:20071120215744-a5988-f2b72bb6cea0c4a6d3a7e1b5ac3b7fa9c4c560b8
-rw-r--r-- | XMonad/Core.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/XMonad/Core.hs b/XMonad/Core.hs index cb63333..d6c07d9 100644 --- a/XMonad/Core.hs +++ b/XMonad/Core.hs @@ -334,7 +334,7 @@ recompile = liftIO $ do binT <- getModTime bin when (srcT > binT) $ do status <- bracket (openFile err WriteMode) hClose $ \h -> do - waitForProcess =<< runProcess "ghc" ["--make", "xmonad.hs", "-i", "-v0"] (Just dir) + waitForProcess =<< runProcess "ghc" ["--make", "xmonad.hs", "-i", "-no-recomp", "-v0"] (Just dir) Nothing Nothing Nothing (Just h) -- now, if it fails, run xmessage to let the user know: |