aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAku Kotkavuo2011-04-17 16:59:16 +0300
committerAdam Vandenberg2011-04-17 08:39:02 -0700
commit2fb211a107c507e430465d54b7b9a5c0f3400bbe (patch)
treeda08a3a160ed8d0ddbe0c9cba5431278a901d3f7 /Library/Formula
parent7a13d7c5faa928a2020abfd952c2bb171d8f48c6 (diff)
downloadhomebrew-2fb211a107c507e430465d54b7b9a5c0f3400bbe.tar.bz2
Remove unnecessary compiler flag from haskell-platform.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-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 2fc39a44b..dc213d9a4 100644
--- a/Library/Formula/haskell-platform.rb
+++ b/Library/Formula/haskell-platform.rb
@@ -10,7 +10,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}", "--enable-unsupported-ghc-version"
+ system "./configure", "--prefix=#{prefix}"
system %Q(EXTRA_CONFIGURE_OPTS="--libdir=#{lib}/ghc" make install)
end