[Pomp-commits] r1152 - in pkg/pomp: . R

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Thu Apr 16 17:55:06 CEST 2015


Author: kingaa
Date: 2015-04-16 17:55:06 +0200 (Thu, 16 Apr 2015)
New Revision: 1152

Modified:
   pkg/pomp/DESCRIPTION
   pkg/pomp/R/builder.R
Log:
- do not redirect stdout to NULL under windows (thanks to Hamish McCallum for reporting this bug)

Modified: pkg/pomp/DESCRIPTION
===================================================================
--- pkg/pomp/DESCRIPTION	2015-03-25 13:26:32 UTC (rev 1151)
+++ pkg/pomp/DESCRIPTION	2015-04-16 15:55:06 UTC (rev 1152)
@@ -1,8 +1,8 @@
 Package: pomp
 Type: Package
 Title: Statistical Inference for Partially Observed Markov Processes
-Version: 0.63-5
-Date: 2015-03-25
+Version: 0.63-6
+Date: 2015-04-16
 Authors at R: c(person(given=c("Aaron","A."),family="King",
 		role=c("aut","cre"),email="kingaa at umich.edu"),
 	  person(given=c("Edward","L."),family="Ionides",role=c("aut")),

Modified: pkg/pomp/R/builder.R
===================================================================
--- pkg/pomp/R/builder.R	2015-03-25 13:26:32 UTC (rev 1151)
+++ pkg/pomp/R/builder.R	2015-04-16 15:55:06 UTC (rev 1152)
@@ -158,7 +158,7 @@
                 command=R.home("bin/R"),
                 args=c("CMD","SHLIB","-o",solib,modelfile),
                 env=cflags,
-                stdout=if (verbose) "" else NULL
+                stdout=if (verbose | .Platform$OS.type=="windows") "" else NULL
                 )
   if (rv!=0)
     stop("cannot compile shared-object library ",sQuote(solib))



More information about the pomp-commits mailing list