diff options
author | Don Stewart <dons@galois.com> | 2009-02-08 17:55:18 +0100 |
---|---|---|
committer | Don Stewart <dons@galois.com> | 2009-02-08 17:55:18 +0100 |
commit | 427775af8470c4a71bcc6f1373988b47965bda43 (patch) | |
tree | 0a1ee761628d96261439577b961a440b58bc01c1 | |
parent | 5c38e151b889f65cac11f1cd19629d04d7e0849d (diff) | |
download | metatile-427775af8470c4a71bcc6f1373988b47965bda43.tar metatile-427775af8470c4a71bcc6f1373988b47965bda43.zip |
Use standard -fforce-recomp instead of undocumented -no-recomp
darcs-hash:20090208165518-cba2c-2f7506b8ab856d7081a3298ed4cff86149fe0742
-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 38048e5..7e17550 100644 --- a/XMonad/Core.hs +++ b/XMonad/Core.hs @@ -416,7 +416,7 @@ recompile force = io $ do -- temporarily disable SIGCHLD ignoring: uninstallSignalHandlers status <- bracket (openFile err WriteMode) hClose $ \h -> do - waitForProcess =<< runProcess "ghc" ["--make", "xmonad.hs", "-i", "-no-recomp", "-v0", "-o",binn] (Just dir) + waitForProcess =<< runProcess "ghc" ["--make", "xmonad.hs", "-i", "-fforce-recomp", "-v0", "-o",binn] (Just dir) Nothing Nothing Nothing (Just h) -- re-enable SIGCHLD: |