summaryrefslogtreecommitdiff
path: root/print
diff options
context:
space:
mode:
authorthor <thor@pkgsrc.org>2021-04-03 11:37:44 +0000
committerthor <thor@pkgsrc.org>2021-04-03 11:37:44 +0000
commit7fa1d339772af8c2aed1fc8f27d62ffc99583a01 (patch)
tree586470d678d58d5ce230dc3484a31618dfd89138 /print
parent52eb8a4b473937340d3f541fe8528666d423f5e9 (diff)
downloadpkgsrc-7fa1d339772af8c2aed1fc8f27d62ffc99583a01.tar.gz
psutils: allow PAPERSIZE=a4, used lowercase anyway!
Diffstat (limited to 'print')
-rw-r--r--print/psutils/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/print/psutils/Makefile b/print/psutils/Makefile
index 3d9e2dcd38e..240cac7b2a0 100644
--- a/print/psutils/Makefile
+++ b/print/psutils/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.49 2020/08/31 18:11:03 wiz Exp $
+# $NetBSD: Makefile,v 1.50 2021/04/03 11:37:44 thor Exp $
DISTNAME= psutils-p17
PKGNAME= psutils-1.17
@@ -19,7 +19,7 @@ BUILD_DEFS+= PAPERSIZE
.if !defined(PAPERSIZE)
PKG_FAIL_REASON+= "PAPERSIZE must be defined by the pkgsrc user."
.else
-. if ${PAPERSIZE} != "A4" && ${PAPERSIZE} != "Letter"
+. if ${PAPERSIZE} != "A4" && ${PAPERSIZE} != "a4" && ${PAPERSIZE} != "Letter"
PKG_FAIL_REASON+= "Invalid PAPERSIZE (${PAPERSIZE}). Choose one of A4 or Letter."
. endif
.endif