diff options
author | Clint Adams <clint@softwarefreedom.org> | 2013-07-19 15:25:45 -0400 |
---|---|---|
committer | Clint Adams <clint@softwarefreedom.org> | 2013-07-19 15:25:45 -0400 |
commit | 45ebe1ffb0d6e229bb06a7c8dad2aabdaaf33083 (patch) | |
tree | bca09c4865e6371a42a9acd7d5086173a58b72e5 /dist/build/autogen/Paths_sflctimekeeper.hs | |
parent | f8b325748a3631df00841f3524b6e1f95a4e30f4 (diff) |
Paths_* should never have been tracked.
Diffstat (limited to 'dist/build/autogen/Paths_sflctimekeeper.hs')
-rw-r--r-- | dist/build/autogen/Paths_sflctimekeeper.hs | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/dist/build/autogen/Paths_sflctimekeeper.hs b/dist/build/autogen/Paths_sflctimekeeper.hs deleted file mode 100644 index e33a371..0000000 --- a/dist/build/autogen/Paths_sflctimekeeper.hs +++ /dev/null @@ -1,34 +0,0 @@ -module Paths_sflctimekeeper ( - version, - getBinDir, getLibDir, getDataDir, getLibexecDir, - getDataFileName - ) where - -import qualified Control.Exception as Exception -import Data.Version (Version(..)) -import System.Environment (getEnv) -import Prelude - -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.6.3" -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) |