svn commit: r408802 - head/Mk/Uses

David Naylor dbn at FreeBSD.org
Sat Feb 13 14:41:47 UTC 2016


Author: dbn
Date: Sat Feb 13 14:41:46 2016
New Revision: 408802
URL: https://svnweb.freebsd.org/changeset/ports/408802

Log:
  Mk/Uses/cran.mk: fix test target.
  
  R no longer accepts the --no-rebuild-vignettes argument, instead requiring
  the --no-build-vignettes (only used if pdflatex is not installed).
  
  PR:		207154
  Approved by:	wen (maintainer)
  MFH:		2016Q1

Modified:
  head/Mk/Uses/cran.mk

Modified: head/Mk/Uses/cran.mk
==============================================================================
--- head/Mk/Uses/cran.mk	Sat Feb 13 14:39:23 2016	(r408801)
+++ head/Mk/Uses/cran.mk	Sat Feb 13 14:41:46 2016	(r408802)
@@ -45,7 +45,7 @@ R_COMMAND=	${LOCALBASE}/bin/R
 R_POSTCMD_CHECK_OPTIONS?=	--timings
 
 .if !exists(${LOCALBASE}/bin/pdflatex)
-R_POSTCMD_CHECK_OPTIONS+=	--no-manual --no-rebuild-vignettes
+R_POSTCMD_CHECK_OPTIONS+=	--no-manual --no-build-vignettes
 .endif
 
 do-test:


More information about the svn-ports-all mailing list