aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2021-10-10 11:24:20 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2021-10-10 11:24:20 -0700
commit90106c300a424349f2be5787c82fd17ccf66983f (patch)
tree60a2681c055df6624387693c03813ef98cc893f8 /Makefile
parentd80aaee42b5563df3a647830639bdd3b090a22ee (diff)
downloadpandoc-90106c300a424349f2be5787c82fd17ccf66983f.tar.gz
Makefile; fix quick-cabal executable path report
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 77d4c81ab..a880da12d 100644
--- a/Makefile
+++ b/Makefile
@@ -27,7 +27,7 @@ quick:
quick-cabal:
cabal v2-build -j8 --ghc-options '$(GHCOPTS)' --disable-optimization --enable-tests
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'
+ echo "Path to built executable:" && cabal exec -- sh -c 'command -v pandoc' | sed -e 's!x/pandoc/build!x/pandoc/noopt/build!'
full-cabal:
cabal v2-configure . --ghc-options '$(GHCOPTS)' --flags '+embed_data_files +trypandoc' --enable-tests --enable-benchmarks