summaryrefslogtreecommitdiff
path: root/dist/build/autogen/Paths_sflctimekeeper.hs
diff options
context:
space:
mode:
Diffstat (limited to 'dist/build/autogen/Paths_sflctimekeeper.hs')
-rw-r--r--dist/build/autogen/Paths_sflctimekeeper.hs32
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)