diff options
author | Devin Mullins <me@twifkak.com> | 2007-11-17 03:48:36 +0100 |
---|---|---|
committer | Devin Mullins <me@twifkak.com> | 2007-11-17 03:48:36 +0100 |
commit | 476e8cf9f8f6cd543a540596b7428ac33b588cb1 (patch) | |
tree | 5cd6aa164026a0f455ac3f013d5f7611fb8bd631 /XMonad | |
parent | 139bb8bca004506c334253a6203059d1cf82e98d (diff) | |
download | xmonad-476e8cf9f8f6cd543a540596b7428ac33b588cb1.tar.gz xmonad-476e8cf9f8f6cd543a540596b7428ac33b588cb1.tar.xz xmonad-476e8cf9f8f6cd543a540596b7428ac33b588cb1.zip |
add support for Mac users and their silly case-insensitive filesystems
darcs-hash:20071117024836-78224-7a96ab62a76c3fd51c34afb69912269905ea7e00.gz
Diffstat (limited to 'XMonad')
-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 7551d88..7702a78 100644 --- a/XMonad/Core.hs +++ b/XMonad/Core.hs @@ -292,7 +292,7 @@ restart mprog resume = do recompile :: IO () recompile = do dir <- fmap (++ "/.xmonad") getHomeDirectory - pid <- runProcess "ghc" ["--make", "xmonad.hs"] (Just dir) + pid <- runProcess "ghc" ["--make", "xmonad.hs", "-i"] (Just dir) Nothing Nothing Nothing Nothing waitForProcess pid return () |