aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAku Kotkavuo2011-06-20 07:00:38 +0300
committerAdam Vandenberg2011-06-19 22:15:06 -0700
commit854e5d352cefd2d7be30cf476ca6549ba60a67ab (patch)
treeb8d2a9091309a0cda8e8116a0eed57289717be0d /Library
parentaebcda591382a3edbdc0c7d9d43aa8413404947b (diff)
downloadhomebrew-854e5d352cefd2d7be30cf476ca6549ba60a67ab.tar.bz2
haskell-platform: fix to work with GHC 7.0.4
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/haskell-platform.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/haskell-platform.rb b/Library/Formula/haskell-platform.rb
index 07c086727..0af082d20 100644
--- a/Library/Formula/haskell-platform.rb
+++ b/Library/Formula/haskell-platform.rb
@@ -9,7 +9,7 @@ class HaskellPlatform < Formula
def install
# libdir doesn't work if passed to configure, needs to be passed to make install
- system "./configure", "--prefix=#{prefix}"
+ system "./configure", "--prefix=#{prefix}", "--enable-unsupported-ghc-version"
system %Q(EXTRA_CONFIGURE_OPTS="--libdir=#{lib}/ghc" make install)
end