[commit: ghc] wip/nfs-locking: Document the provenance of the Main functions in the code rather than in comments (c573af0)
git at git.haskell.org
git at git.haskell.org
Fri Oct 27 00:01:53 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/nfs-locking
Link : http://ghc.haskell.org/trac/ghc/changeset/c573af06514bb073cb76918343303b9a2c043160/ghc
>---------------------------------------------------------------
commit c573af06514bb073cb76918343303b9a2c043160
Author: Neil Mitchell <ndmitchell at gmail.com>
Date: Thu Jan 7 18:30:03 2016 +0000
Document the provenance of the Main functions in the code rather than in comments
>---------------------------------------------------------------
c573af06514bb073cb76918343303b9a2c043160
src/Main.hs | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/src/Main.hs b/src/Main.hs
index 07f14ea..0fe2ee3 100644
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -9,15 +9,15 @@ import Rules.Oracles
main :: IO ()
main = shakeArgs options $ do
- cabalRules -- see Rules.Cabal
- configRules -- see Rules.Config
- copyRules -- see Rules.Generate
- generateTargets -- see Rules
- generateRules -- see Rules.Generate
- libffiRules -- see Rules.Libffi
- integerGmpRules -- see Rules.IntegerGmp
- oracleRules -- see Rules.Oracles
- packageRules -- see Rules
+ Rules.Cabal.cabalRules
+ Rules.Config.configRules
+ Rules.Generate.copyRules
+ Rules.generateTargets
+ Rules.Generate.generateRules
+ Rules.Libffi.libffiRules
+ Rules.IntegerGmp.integerGmpRules
+ Rules.Oracles.oracleRules
+ Rules.packageRules
where
options = shakeOptions
{ shakeFiles = shakeFilesPath
More information about the ghc-commits
mailing list