diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2015-10-27 13:25:15 +0100 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2015-10-30 17:43:05 +0100 |
commit | 1f1c7c610b0ff26dccaef089e27003497fa25beb (patch) | |
tree | c92c19084581b6ade354d1e4dd20661e58f68602 /utils/runghc/runghc.cabal.in | |
parent | 0a16374109ad16d9337185f5c0a845a3f20141cb (diff) | |
download | haskell-1f1c7c610b0ff26dccaef089e27003497fa25beb.tar.gz |
Build system: rename runghc.hs to Main.hs
The build system has trouble with Main modules not called Main.hs. This
change allows a hack in utils/runghc/ghc.mk to be removed.
Diffstat (limited to 'utils/runghc/runghc.cabal.in')
-rw-r--r-- | utils/runghc/runghc.cabal.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/runghc/runghc.cabal.in b/utils/runghc/runghc.cabal.in index fde6b9a4d6..6da179ad24 100644 --- a/utils/runghc/runghc.cabal.in +++ b/utils/runghc/runghc.cabal.in @@ -17,7 +17,7 @@ Flag base3 Executable runghc Default-Language: Haskell2010 - Main-Is: runghc.hs + Main-Is: Main.hs if flag(base3) Build-Depends: base >= 3 && < 5, |