From d47fe5a8e167d8bdc0b4edf2899eee351615ccf8 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Thu, 25 Apr 2024 18:50:24 -0400 Subject: [PATCH] makefile: disable -Wmissing-kind-signatures This needs a GHC extension to fix it. --- makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/makefile b/makefile index 12779b2..9fdfc33 100644 --- a/makefile +++ b/makefile @@ -17,6 +17,7 @@ HCFLAGS += -Weverything \ -Wno-prepositive-qualified-module \ -Wno-missing-safe-haskell-mode \ -Wno-missing-deriving-strategies \ + -Wno-missing-kind-signatures \ -rtsopts \ -threaded -- 2.43.2