diff options
author | Clint Adams <clint@softwarefreedom.org> | 2012-10-22 15:19:04 -0400 |
---|---|---|
committer | Clint Adams <clint@softwarefreedom.org> | 2012-10-22 15:19:04 -0400 |
commit | 025eb70c992914fbdf018c189d358ae250d2eeb1 (patch) | |
tree | 7367d3726594183bbb908d1a797cacd410c301cc /dist |
This needs to be cleaned and sanitized before publication.
Diffstat (limited to 'dist')
-rw-r--r-- | dist/build/autogen/Paths_sflctimekeeper.hs | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/dist/build/autogen/Paths_sflctimekeeper.hs b/dist/build/autogen/Paths_sflctimekeeper.hs new file mode 100644 index 0000000..76e952e --- /dev/null +++ b/dist/build/autogen/Paths_sflctimekeeper.hs @@ -0,0 +1,32 @@ +module Paths_sflctimekeeper ( + version, + getBinDir, getLibDir, getDataDir, getLibexecDir, + getDataFileName + ) where + +import qualified Control.Exception as Exception +import Data.Version (Version(..)) +import System.Environment (getEnv) +catchIO :: IO a -> (Exception.IOException -> IO a) -> IO a +catchIO = Exception.catch + + +version :: Version +version = Version {versionBranch = [0,0,0], versionTags = []} +bindir, libdir, datadir, libexecdir :: FilePath + +bindir = "/home/clint/.cabal/bin" +libdir = "/home/clint/.cabal/lib/sflctimekeeper-0.0.0/ghc-7.4.1" +datadir = "/home/clint/.cabal/share/sflctimekeeper-0.0.0" +libexecdir = "/home/clint/.cabal/libexec" + +getBinDir, getLibDir, getDataDir, getLibexecDir :: IO FilePath +getBinDir = catchIO (getEnv "sflctimekeeper_bindir") (\_ -> return bindir) +getLibDir = catchIO (getEnv "sflctimekeeper_libdir") (\_ -> return libdir) +getDataDir = catchIO (getEnv "sflctimekeeper_datadir") (\_ -> return datadir) +getLibexecDir = catchIO (getEnv "sflctimekeeper_libexecdir") (\_ -> return libexecdir) + +getDataFileName :: FilePath -> IO FilePath +getDataFileName name = do + dir <- getDataDir + return (dir ++ "/" ++ name) |