diff options
author | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-12-05 05:39:13 +0100 |
---|---|---|
committer | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-12-05 05:39:13 +0100 |
commit | 7bb88519dbef4b7111d2bda05c3e1a0f1d2430e9 (patch) | |
tree | d580e5a5efeeb1dd6f2e78bc6f1d0ae2a3ff894e /util | |
parent | ee7d5ae286db29513d22e86e2b62c469cb869040 (diff) | |
download | metatile-7bb88519dbef4b7111d2bda05c3e1a0f1d2430e9.tar metatile-7bb88519dbef4b7111d2bda05c3e1a0f1d2430e9.zip |
Update man location
darcs-hash:20071205043913-a5988-f24d8ae3ae51f21f80f51000749fe6f0682103bb
Diffstat (limited to 'util')
-rw-r--r-- | util/GenerateManpage.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/GenerateManpage.hs b/util/GenerateManpage.hs index 88d4848..327db81 100644 --- a/util/GenerateManpage.hs +++ b/util/GenerateManpage.hs @@ -42,6 +42,6 @@ replace :: Eq a => a -> a -> [a] -> [a] replace x y = map (\a -> if a == x then y else a) main = do - troffBindings <- (concatMap troff . allBindings) `liftM` readFile "./Config.hs" + troffBindings <- (concatMap troff . allBindings) `liftM` readFile "./XMonad/Config.hs" let sed = unlines . replace "___KEYBINDINGS___" troffBindings . lines readFile "./man/xmonad.1.in" >>= return . sed >>= writeFile "./man/xmonad.1" |