diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-03-06 19:48:50 +0800 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-03-06 19:48:50 +0800 |
commit | d606de8ef9436f8d5bb94ba8342c96fb488288c6 (patch) | |
tree | 9c1f02944d26f5c769aa1b7cfc029cc6cfbb45b2 /math/R | |
parent | e81a470540467cbc4c27fd516d8204cf6f30ef7b (diff) | |
download | freebsd-ports-gnome-d606de8ef9436f8d5bb94ba8342c96fb488288c6.tar.gz freebsd-ports-gnome-d606de8ef9436f8d5bb94ba8342c96fb488288c6.tar.zst freebsd-ports-gnome-d606de8ef9436f8d5bb94ba8342c96fb488288c6.zip |
- Unbreak: Build the four documentation formats sequentially (instead of simultaneously)
to prevent perl 5.8 from using too much memory (> 512 MB) and being killed.
PR: ports/63804
Submitted by: Eric van Gyzen <vangyzen@stat.duke.edu> (maintainer)
Diffstat (limited to 'math/R')
-rw-r--r-- | math/R/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/math/R/Makefile b/math/R/Makefile index 836b3adf9c01..84503ef49bc4 100644 --- a/math/R/Makefile +++ b/math/R/Makefile @@ -68,8 +68,10 @@ MAN1= R.1 .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 502000 -BROKEN= "Broken pkg-plist" +# Build the four documentation formats sequentially (instead of simultaneously) +# to prevent perl 5.8 from using too much memory (> 512 MB) and being killed. +.if ${PERL_LEVEL} >= 500800 +ALL_TARGET= Makefile Makeconf R help html latex examples stamp-recommended .endif test check: build |