diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-11-15 23:15:51 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-11-15 23:15:51 -0800 |
commit | a52b18807a6f175e3411df53315346cf23250d07 (patch) | |
tree | 24528026d7b4981acccec2f3622b798104801aeb /Makefile | |
parent | b59d0fb6bd26365bddda36e434cb877bae1d156e (diff) | |
download | pandoc-a52b18807a6f175e3411df53315346cf23250d07.tar.gz |
'make dist' - use stack to build from tarball.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 $< > $@ |