[commit: ghc] wip/nfs-locking: Remove redundant imports, add TODO's. (fe2655b)
git at git.haskell.org
git at git.haskell.org
Thu Oct 26 23:44:53 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/nfs-locking
Link : http://ghc.haskell.org/trac/ghc/changeset/fe2655b6cd60d09311e87e1aa8736a3bbd847d9b/ghc
>---------------------------------------------------------------
commit fe2655b6cd60d09311e87e1aa8736a3bbd847d9b
Author: Andrey Mokhov <andrey.mokhov at gmail.com>
Date: Fri Dec 26 23:04:07 2014 +0000
Remove redundant imports, add TODO's.
>---------------------------------------------------------------
fe2655b6cd60d09311e87e1aa8736a3bbd847d9b
src/Config.hs | 10 ++--------
1 file changed, 2 insertions(+), 8 deletions(-)
diff --git a/src/Config.hs b/src/Config.hs
index 3d26482..b4f0519 100644
--- a/src/Config.hs
+++ b/src/Config.hs
@@ -2,12 +2,6 @@ module Config (
autoconfRules, configureRules, cfgPath
) where
-import Development.Shake
-import Development.Shake.Command
-import Development.Shake.FilePath
-import Development.Shake.Rule
-import Control.Applicative
-import Control.Monad
import Base
cfgPath :: FilePath
@@ -17,10 +11,10 @@ autoconfRules :: Rules ()
autoconfRules = do
"configure" %> \out -> do
copyFile' (cfgPath </> "configure.ac") "configure.ac"
- cmd "bash autoconf"
+ cmd "bash autoconf" -- TODO: get rid of 'bash'
configureRules :: Rules ()
configureRules = do
cfgPath </> "default.config" %> \out -> do
need [cfgPath </> "default.config.in", "configure"]
- cmd "bash configure"
+ cmd "bash configure" -- TODO: get rid of 'bash'
More information about the ghc-commits
mailing list