diff options
author | Ian Lynagh <igloo@earth.li> | 2011-01-19 22:23:59 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-01-19 22:23:59 +0000 |
commit | 02d2dde49eaa614995a7e168d229e8b5cb88eafe (patch) | |
tree | 764688c1d2c19011276aa88bbc0253287dd4d5d4 /utils/ghc-cabal/Main.hs | |
parent | 6b715274be0003cf94a5e8f46e3d0baca773452f (diff) | |
download | haskell-02d2dde49eaa614995a7e168d229e8b5cb88eafe.tar.gz |
Remove an extraneous comma that stopped ghc-cabal from building
Diffstat (limited to 'utils/ghc-cabal/Main.hs')
-rw-r--r-- | utils/ghc-cabal/Main.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/ghc-cabal/Main.hs b/utils/ghc-cabal/Main.hs index f189e07092..5ebca2ad7e 100644 --- a/utils/ghc-cabal/Main.hs +++ b/utils/ghc-cabal/Main.hs @@ -380,7 +380,7 @@ generate config_args distdir directory "", -- Sometimes we need to modify the automatically-generated package-data.mk -- bindings in a special way for the GHC build system, so allow that here: - "$(eval $(" ++ directory ++ "_PACKAGE_MAGIC))", + "$(eval $(" ++ directory ++ "_PACKAGE_MAGIC))" ] writeFile (distdir ++ "/package-data.mk") $ unlines xs writeFile (distdir ++ "/haddock-prologue.txt") $ |