pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/print/psutils
Module Name: pkgsrc
Committed By: thor
Date: Sat Apr 3 11:37:44 UTC 2021
Modified Files:
pkgsrc/print/psutils: Makefile
Log Message:
psutils: allow PAPERSIZE=a4, used lowercase anyway!
To generate a diff of this commit:
cvs rdiff -u -r1.49 -r1.50 pkgsrc/print/psutils/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/print/psutils/Makefile
diff -u pkgsrc/print/psutils/Makefile:1.49 pkgsrc/print/psutils/Makefile:1.50
--- pkgsrc/print/psutils/Makefile:1.49 Mon Aug 31 18:11:03 2020
+++ pkgsrc/print/psutils/Makefile Sat Apr 3 11:37:44 2021
@@ -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
Home |
Main Index |
Thread Index |
Old Index