Updated Branches: refs/heads/master c0c889b9d -> b2b4a5ca9
THRIFT-2185 use cabal instead of runhaskell in haskell library Patch: John Chee Project: http://git-wip-us.apache.org/repos/asf/thrift/repo Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/b2b4a5ca Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/b2b4a5ca Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/b2b4a5ca Branch: refs/heads/master Commit: b2b4a5ca981639ce8ee02d1c6f463e6b5fea7adf Parents: c0c889b Author: Roger Meier <[email protected]> Authored: Sun Jan 12 13:09:25 2014 +0100 Committer: Roger Meier <[email protected]> Committed: Sun Jan 12 13:10:50 2014 +0100 ---------------------------------------------------------------------- lib/hs/Makefile.am | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/thrift/blob/b2b4a5ca/lib/hs/Makefile.am ---------------------------------------------------------------------- diff --git a/lib/hs/Makefile.am b/lib/hs/Makefile.am index 3464a4f..3db1df9 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
