[Rcpp-commits] r3752 - in pkg/Rcpp: . inst/doc

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Sat Sep 1 21:32:30 CEST 2012


Author: edd
Date: 2012-09-01 21:32:29 +0200 (Sat, 01 Sep 2012)
New Revision: 3752

Modified:
   pkg/Rcpp/ChangeLog
   pkg/Rcpp/DESCRIPTION
   pkg/Rcpp/inst/doc/Makefile
Log:
modified inst/doc/Makefile to make 'make all' an empty target
incremented minor to 0.9.13.2 to force new tarball on R-Forge


Modified: pkg/Rcpp/ChangeLog
===================================================================
--- pkg/Rcpp/ChangeLog	2012-08-31 01:23:00 UTC (rev 3751)
+++ pkg/Rcpp/ChangeLog	2012-09-01 19:32:29 UTC (rev 3752)
@@ -1,3 +1,8 @@
+2012-09-01  Dirk Eddelbuettel  <edd at debian.org>
+
+	* inst/doc/Makefile: The 'all' target is now empty to prevent
+	autobuilders such as R-Forge from falling over
+
 2012-07-23  Dirk Eddelbuettel  <edd at debian.org>
 
 	* R/bib.R: Trim the trailing ".bib" from the generated bibtex
@@ -12,7 +17,7 @@
 
 	* inst/include/Rcpp/config.h: In order to not attempt to include
 	exception_defines.h if on OS X (as the clang runtime may not have
-	predictable access to g+++ headers providing these), do not define
+	predictable access to g++ headers providing these), do not define
 	RCPP_HAS_DEMANGLING which is used in src/exceptions.cpp
 
 2012-06-28  Dirk Eddelbuettel  <edd at debian.org>

Modified: pkg/Rcpp/DESCRIPTION
===================================================================
--- pkg/Rcpp/DESCRIPTION	2012-08-31 01:23:00 UTC (rev 3751)
+++ pkg/Rcpp/DESCRIPTION	2012-09-01 19:32:29 UTC (rev 3752)
@@ -1,6 +1,6 @@
 Package: Rcpp
 Title: Seamless R and C++ Integration
-Version: 0.9.13.1
+Version: 0.9.13.2
 Date: $Date$
 Author: Dirk Eddelbuettel and Romain Francois, with contributions 
  by Douglas Bates and John Chambers

Modified: pkg/Rcpp/inst/doc/Makefile
===================================================================
--- pkg/Rcpp/inst/doc/Makefile	2012-08-31 01:23:00 UTC (rev 3751)
+++ pkg/Rcpp/inst/doc/Makefile	2012-09-01 19:32:29 UTC (rev 3752)
@@ -8,8 +8,12 @@
 ## on Ubuntu so for now Dirk will insist on pdflatex and this helps.
 whoami=$(shell whoami)
 
-all: rotateFiles index.html Rcpp-unitTests.pdf Rcpp-introduction.pdf Rcpp-modules.pdf Rcpp-package.pdf Rcpp-FAQ.pdf Rcpp-extending.pdf Rcpp-sugar.pdf Rcpp-quickref.pdf
+all:
+	@echo The 'make all' target is now empty as eg R-Forge builds fall over
+	@echo So please use 'make pdfclean; make pdfall' to rebuild
 
+pdfall: rotateFiles index.html Rcpp-unitTests.pdf Rcpp-introduction.pdf Rcpp-modules.pdf Rcpp-package.pdf Rcpp-FAQ.pdf Rcpp-extending.pdf Rcpp-sugar.pdf Rcpp-quickref.pdf
+
 pdfclean:
 	rm -f Rcpp-extending.pdf  Rcpp-FAQ.pdf  Rcpp-introduction.pdf  Rcpp-modules.pdf  Rcpp-package.pdf  Rcpp-quickref.pdf  Rcpp-sugar.pdf  Rcpp-unitTests.pdf
 



More information about the Rcpp-commits mailing list