aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2021-10-05 08:45:41 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2021-10-05 08:45:41 -0700
commit72c4064f1e20322de3b53509eed18bc035a14ee4 (patch)
treebf35af08fb922defc5f3349394c62dc06dd2dcfa /Makefile
parent6c507a66cf007ee0d7739ef4c4217f6984db49ef (diff)
downloadpandoc-72c4064f1e20322de3b53509eed18bc035a14ee4.tar.gz
Improve quick-cabal target
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f8fea8028..77d4c81ab 100644
--- a/Makefile
+++ b/Makefile
@@ -26,8 +26,8 @@ quick:
quick-cabal:
cabal v2-build -j8 --ghc-options '$(GHCOPTS)' --disable-optimization --enable-tests
- cabal v2-test --test-option=--hide-successes --test-option=--ansi-tricks=false $(TESTARGS)
- cabal v2-install --disable-optimization
+ cabal v2-test --disable-optimization --test-options="--hide-successes --ansi-tricks=false $(TESTARGS)"
+ echo "Path to built executable:" && cabal exec -- sh -c 'command -v pandoc'
full-cabal:
cabal v2-configure . --ghc-options '$(GHCOPTS)' --flags '+embed_data_files +trypandoc' --enable-tests --enable-benchmarks