From: Roger Meier Date: Sun, 12 Jan 2014 12:09:25 +0000 (+0100) Subject: THRIFT-2185 use cabal instead of runhaskell in haskell library X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=b2b4a5ca981639ce8ee02d1c6f463e6b5fea7adf;p=common%2Fthrift.git THRIFT-2185 use cabal instead of runhaskell in haskell library Patch: John Chee --- diff --git a/lib/hs/Makefile.am b/lib/hs/Makefile.am index 3464a4fd..3db1df91 100644 --- a/lib/hs/Makefile.am +++ b/lib/hs/Makefile.am @@ -26,18 +26,18 @@ EXTRA_DIST = \ src all-local: - $(RUNHASKELL) Setup.lhs configure $(CABAL_CONFIGURE_FLAGS) - $(RUNHASKELL) Setup.lhs build + $(CABAL) configure $(CABAL_CONFIGURE_FLAGS) + $(CABAL) build install-exec-hook: - $(RUNHASKELL) Setup.lhs install + $(CABAL) install # Make sure this doesn't fail if Haskell is not configured. clean-local: - $(RUNHASKELL) Setup.lhs clean + $(CABAL) clean maintainer-clean-local: - $(RUNHASKELL) Setup.lhs clean + $(CABAL) clean check-local: $(CABAL) check