aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2025-03-16 11:00:40 -0700
committerJohn MacFarlane <[email protected]>2025-03-16 11:00:40 -0700
commit7140861a0a2eabd50b9d2eb5ee580bea52c0bdd1 (patch)
treec804ec926fa442a3386bafee85941c227ba91cc0 /Makefile
parentda45a9c76ae4539f6007841df8ae4d2bb9f8dee8 (diff)
Makefile - ignore missing upper bounds in `cabal check`.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 75d995791..e9142a9dd 100644
--- a/Makefile
+++ b/Makefile
@@ -88,7 +88,7 @@ check-cabal: git-files.txt sdist-files.txt
@for pkg in . pandoc-lua-engine pandoc-server pandoc-cli; \
do \
pushd $$pkg ; \
- cabal check ; \
+ cabal check --ignore=missing-upper-bounds ; \
cabal outdated ; \
popd ; \
done