Mike McQuaid c2a928eb51 Add Haskell::Cabal#cabal_clean_lib back to compat.
We shouldn't have removed this DSL method without a compat fallback.

Closes Homebrew/homebrew#48479.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2016-01-26 11:49:15 +00:00

11 lines
194 B
Ruby

module Language
module Haskell
module Cabal
def cabal_clean_lib
# avoid installing any Haskell libraries, as a matter of policy
rm_rf lib
end
end
end
end