diff options
| author | nibbles 2bits | 2012-10-16 03:03:33 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-10-20 08:40:12 -0700 |
| commit | accca20e6fde7f68b8451bec54752514e6876252 (patch) | |
| tree | 42c0586df1f22c6526f747d6d87d3b8c5daec534 /Library/Formula | |
| parent | 2dd9f153615e54653d061c58cff850ae3850ed53 (diff) | |
| download | homebrew-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.rb | 1 |
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' |
