Skip to content

Commit

Permalink
Bump the warning for unsupport GHC 9 minor version to greater than 9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
quark17 authored and kenta2 committed Aug 18, 2023
1 parent f36a040 commit 0eb551d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/comp/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ GHCPATCH=$(shell echo $(GHCVERSION) | cut -d. -f3)
ifeq ($(GHCMAJOR),9)

# Warn about newer versions that are not yet supported
GHCMINORGT2 := $(shell expr $(GHCMINOR) \> 2)
ifeq ($(GHCMINORGT2),1)
GHCMINORGT6 := $(shell expr $(GHCMINOR) \> 6)
ifeq ($(GHCMINORGT6),1)
$(warning Unsupported GHC 9 minor version: $(GHCMINOR))
endif

Expand Down

0 comments on commit 0eb551d

Please sign in to comment.