aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authornibbles 2bits2012-10-16 03:03:33 -0700
committerAdam Vandenberg2012-10-20 08:40:12 -0700
commitaccca20e6fde7f68b8451bec54752514e6876252 (patch)
tree42c0586df1f22c6526f747d6d87d3b8c5daec534 /Library/Formula
parent2dd9f153615e54653d061c58cff850ae3850ed53 (diff)
downloadhomebrew-accca20e6fde7f68b8451bec54752514e6876252.tar.bz2
cabal-install: unset VERBOSE, fixes compile error
Cabal-install runs a series of commands that use the env var `VERBOSE` which has to be either unset or equal to `--verbose`. Doing a `brew install -v cabal-install` sets `VERBOSE=1` and breaks the build. - Unset `VERBOSE` Fixes #12155 Closes #15485. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/cabal-install.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Formula/cabal-install.rb b/Library/Formula/cabal-install.rb
index b9bdf8161..918f10e7f 100644
--- a/Library/Formula/cabal-install.rb
+++ b/Library/Formula/cabal-install.rb
@@ -9,6 +9,7 @@ class CabalInstall < Formula
def install
ENV['PREFIX'] = "#{prefix}"
+ ENV['VERBOSE'] = ''
system "sh bootstrap.sh"
(prefix+'etc/bash_completion.d').install 'bash-completion/cabal'