From a52b18807a6f175e3411df53315346cf23250d07 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sun, 15 Nov 2015 23:15:51 -0800 Subject: [PATCH] 'make dist' - use stack to build from tarball. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1c9942959..5dfb5565b 100644 --- a/Makefile +++ b/Makefile @@ -35,7 +35,7 @@ dist: man/pandoc.1 rm -rf "pandoc-${version}" tar xvzf dist/pandoc-${version}.tar.gz cd pandoc-${version} - cabal configure ${CABALARGS} && cabal build && cabal test && cd .. && rm -rf "pandoc-${version}" + stack setup && stack test && cd .. && rm -rf "pandoc-${version}" .travis.yml: pandoc.cabal make_travis_yml.hs runghc make_travis_yml.hs $< > $@