[commit: ghc] wip/nfs-locking: Revert "Document the provenance of the Main functions in the code rather than in comments" (619f31e)

git at git.haskell.org git at git.haskell.org
Fri Oct 27 00:31:53 UTC 2017


Repository : ssh://git@git.haskell.org/ghc

On branch  : wip/nfs-locking
Link       : http://ghc.haskell.org/trac/ghc/changeset/619f31ec9fb5d7dac00582129d8722f514a54f3b/ghc

>---------------------------------------------------------------

commit 619f31ec9fb5d7dac00582129d8722f514a54f3b
Author: Andrey Mokhov <andrey.mokhov at gmail.com>
Date:   Thu Jan 7 20:16:57 2016 +0000

    Revert "Document the provenance of the Main functions in the code rather than in comments"
    
    This reverts commit c573af06514bb073cb76918343303b9a2c043160.


>---------------------------------------------------------------

619f31ec9fb5d7dac00582129d8722f514a54f3b
 src/Main.hs | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/Main.hs b/src/Main.hs
index 0fe2ee3..07f14ea 100644
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -9,15 +9,15 @@ import Rules.Oracles
 
 main :: IO ()
 main = shakeArgs options $ do
-    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
+    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
   where
     options = shakeOptions
         { shakeFiles    = shakeFilesPath



More information about the ghc-commits mailing list