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 | 98ff58a730f32cf6d9c8787a82573c199f0abed8 (patch) | |
tree | d580e5a5efeeb1dd6f2e78bc6f1d0ae2a3ff894e /util | |
parent | 4abcacb7c7238478c9a4a9e760e7b4c049d2d563 (diff) | |
download | xmonad-98ff58a730f32cf6d9c8787a82573c199f0abed8.tar.gz xmonad-98ff58a730f32cf6d9c8787a82573c199f0abed8.tar.xz xmonad-98ff58a730f32cf6d9c8787a82573c199f0abed8.zip |
Update man location
darcs-hash:20071205043913-a5988-f24d8ae3ae51f21f80f51000749fe6f0682103bb.gz
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" |