diff options
author | hubertf <hubertf> | 1999-06-09 00:45:08 +0000 |
---|---|---|
committer | hubertf <hubertf> | 1999-06-09 00:45:08 +0000 |
commit | decf2cedf80b5869ae0d189a67ca6b6686c615e0 (patch) | |
tree | 18688d4a525c33af72472b9dde0a4d5016de62ec | |
parent | 94de42228ea998fce558705a45bd7b3de506e907 (diff) | |
download | pkgsrc-decf2cedf80b5869ae0d189a67ca6b6686c615e0.tar.gz |
default R_PAPERSIZE to A4 if PAPERSIZE is not set.
-rw-r--r-- | math/R/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/math/R/Makefile b/math/R/Makefile index 07a3423c100..d972d331dd4 100644 --- a/math/R/Makefile +++ b/math/R/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 1999/05/25 23:45:05 jlam Exp $ +# $NetBSD: Makefile,v 1.7 1999/06/09 00:45:08 hubertf Exp $ # DISTNAME= R-0.64.1 @@ -34,6 +34,8 @@ CONFIGURE_ARGS+=--enable-readline --with-x # .if defined(PAPERSIZE) R_PAPERSIZE?= ${PAPERSIZE} +.else +R_PAPERSIZE?= A4 .endif .if (${R_PAPERSIZE} == "Letterdj") R_PAPERSIZE= Letter |