
We shouldn't have removed this DSL method without a compat fallback. Closes Homebrew/homebrew#48479. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
11 lines
194 B
Ruby
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
|