Skip to content

Commit 6055922

Browse files
committed
[ #1001 ] Supported cabal-install 3.0.0.0.
1 parent 693fe10 commit 6055922

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

GNUmakefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ setup: Everything.agda
1818

1919
.PHONY: Everything.agda
2020
Everything.agda:
21-
cabal clean && cabal install
21+
# The command `cabal build` instead of the command `cabal install` was
22+
# required by `cabal-install 3.0.0.0`. See Issue #1001.
23+
cabal clean && cabal build
2224
cabal exec -- GenerateEverything
2325

2426
.PHONY: listings

0 commit comments

Comments
 (0)