summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2022-09-08 05:26:16 +0000
committerwiz <wiz@pkgsrc.org>2022-09-08 05:26:16 +0000
commit327d371786497721deffe68271432ab01edca1bf (patch)
tree4e4346454f7913e711ce42884935e4e600d47e1b /mk
parent0012cd3dd7f281efb7622e0c94616171d5f0ee83 (diff)
downloadpkgsrc-327d371786497721deffe68271432ab01edca1bf.tar.gz
mk: fix typos in comments
Diffstat (limited to 'mk')
-rw-r--r--mk/haskell.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/mk/haskell.mk b/mk/haskell.mk
index f2bc150ba2d..bcc5a7216b4 100644
--- a/mk/haskell.mk
+++ b/mk/haskell.mk
@@ -1,4 +1,4 @@
-# $NetBSD: haskell.mk,v 1.46 2022/09/08 04:45:44 pho Exp $
+# $NetBSD: haskell.mk,v 1.47 2022/09/08 05:26:16 wiz Exp $
#
# This Makefile fragment handles Haskell Cabal packages. Package
# configuration, building, installation, registration and unregistration
@@ -36,7 +36,7 @@
# A list of Cabal packages that the package depends on, whose version
# constraints are way too restricted to solve. Listing packages in
# this variable will cause the *.cabal file to be rewritten so that
-# any version is accepted. Use this with care, because not every
+# any version is accepted. Use this with care, because not all
# incompatibilities are caught during build time.
#
# Default value: empty
@@ -166,7 +166,7 @@ USE_LANGUAGES+= c
# which is called Haskell PVP (https://pvp.haskell.org/). Packages usually
# have version constraints on their dependencies that specify not only
# lower bounds but also upper bounds. The problem is that, while lower
-# bounds are mostly acculate, package authors can not be sure about upper
+# bounds are mostly accurate, package authors can not be sure about upper
# bounds so they tend to be too pessimistic about compatibility.
.if !empty(HASKELL_UNRESTRICT_DEPENDENCIES)
SUBST_CLASSES+= cabal
@@ -174,7 +174,7 @@ SUBST_STAGE.cabal?= post-extract
SUBST_FILES.cabal?= ${HASKELL_PKG_NAME:C/-[[:digit:].]+$//}.cabal
SUBST_MESSAGE.cabal?= Relaxing version constraints on dependencies
. for _pkg_ in ${HASKELL_UNRESTRICT_DEPENDENCIES}
-# Leading whitespaces or commas to avoid mismatches, remove version
+# Leading whitespace or commas to avoid mismatches, remove version
# constraints up to end of line or ','.
SUBST_SED.cabal+= -Ee 's/((^|,)[[:space:]]*${_pkg_})[^[:alpha:],]+(,|$$)/\1\3/g'
. endfor